Box" v-show="isShowMessage
Box">
vue.js官方文档中有nofollow" target="_blank" href="https://cn.vuejs.org/v2/guide/plugins.html">开发插件的介绍。具体实现代码如下:
import msgboxVue from './index.vue';
// 定义插件对象
const MessageBox = {};
// vue的install方法,用于定义vue插件
MessageBox.install = function (Vue,options) {
const MessageBoxInstance = Vue.extend(msgboxVue);
let currentMsg,instance;
const initInstance = () => {
// 实例化vue实例
currentMsg = new Message
BoxInstance();
let msg
BoxEl = currentMsg.$mount().$el;
document.body.appendChild(msg
BoxEl);
};
// 在Vue的原型上
添加实例
方法,以全局
调用
Vue.prototype.$msg
Box = {
showMsg
Box (options) {
if (!instance) {
initInstance();
}
if (typeof options === 'string') {
currentMsg.content = options;
} else if (typeof options === 'object') {
Object.assign(currentMsg,options);
}
return currentMsg.showMsg
Box();
}
};
};
export default Message
Box;
全局使用
Box from './components/Message
Box/index';
Vue.use(Message
Box);
按照之前定义好的方法,可以在各个页面中愉快的调用该组件了。
{
// ...
}).catch(() => {
// ...
});
最后来张效果图
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对编程之家的支持。
原文链接:https://www.f2er.com/vue/35083.html