- 定義的公共方法
export default {
install(Vue) {
Vue.prototype.showErrMeg = function (msg) {
this.$message({
showClose: true,
message: msg,
type: 'error'
});
};
Vue.prototype.showSuccessMeg = function (msg) {
this.$message({
showClose: true,
message: msg,
type: 'success'
});
};
}
}
- 調(diào)用示例:
this.showErrMeg(xxx)
-
main.js
引入
import comFun from './comfun/index';
Vue.use(comFun);