plugin.js 445 B

12345678910111213
  1. exports.install = function (Vue, options) {
  2. Vue.prototype.test = function (){
  3. console.log('test');
  4. // this.$confirm('此操作将删除该数据, 是否继续?', '提示', {
  5. // confirmButtonText: '确定',
  6. // cancelButtonText: '取消',
  7. // type: 'warning'
  8. // }).then(() => {})
  9. };
  10. Vue.prototype.goback = function (){//返回上一页
  11. window.history.back();
  12. };
  13. };