vue2实现`this.$notice`,页面弹窗提示
效果
代码
// main.js
Vue.prototype.$notice = (arg) => {
createwomo(Noticewomo, arg)
}
// createwomo.js
import Vue from 'vue'
// export const createwomo = function(component, arg) {
export function createwomo (component, props) {
// vue实例对象
const ...
eddieqiao.hashnode.dev1 min read