Vue.js元件知識點蠻多的,而且很重要,本文就給大家介紹關於利用vue.js開發實現全域呼叫的MessageBox元件的相關資料,文中透過範例程式碼介紹的非常詳細,需要的朋友可以參考借鑒,下面來一起看看吧,希望能幫助大家。
元件範本
// /src/components/MessageBox/index.vue <template> <p class="message-box" v-show="isShowMessageBox"> <p class="mask" @click="cancel"></p> <p class="message-content"> <svg class="icon" aria-hidden="true" @click="cancel"> <use xlink:href="#icon-delete" rel="external nofollow" ></use> </svg> <h3 class="title">{{ title }}</h3> <p class="content">{{ content }}</p> <p> <input type="text" v-model="inputValue" v-if="isShowInput" ref="input"> </p> <p class="btn-group"> <button class="btn-default" @click="cancel" v-show="isShowCancelBtn">{{ cancelBtnText }}</button> <button class="btn-primary btn-confirm" @click="confirm" v-show="isShowConfimrBtn">{{ confirmBtnText }}</button> </p> </p> </p> </template> <script> export default { props: { title: { type: String, default: '标题' }, content: { type: String, default: '这是弹框内容' }, isShowInput: false, inputValue: '', isShowCancelBtn: { type: Boolean, default: true }, isShowConfimrBtn: { type: Boolean, default: true }, cancelBtnText: { type: String, default: '取消' }, confirmBtnText: { type: String, default: '确定' } }, data () { return { isShowMessageBox: false, resolve: '', reject: '', promise: '' // 保存promise对象 }; }, methods: { // 确定,将promise断定为resolve状态 confirm: function () { this.isShowMessageBox = false; if (this.isShowInput) { this.resolve(this.inputValue); } else { this.resolve('confirm'); } this.remove(); }, // 取消,将promise断定为reject状态 cancel: function () { this.isShowMessageBox = false; this.reject('cancel'); this.remove(); }, // 弹出messageBox,并创建promise对象 showMsgBox: function () { this.isShowMessageBox = true; this.promise = new Promise((resolve, reject) => { this.resolve = resolve; this.reject = reject; }); // 返回promise对象 return this.promise; }, remove: function () { setTimeout(() => { this.destroy(); }, 300); }, destroy: function () { this.$destroy(); document.body.removeChild(this.$el); } } }; </script> <style lang="scss" scoped> // 此处省略 ... </style>
#為元件新增全域功能
vue.js官方文件中有開發插件的介紹。具體實作程式碼如下:
// /src/components/MessageBox/index.js 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 MessageBoxInstance(); let msgBoxEl = currentMsg.$mount().$el; document.body.appendChild(msgBoxEl); }; // 在Vue的原型上添加实例方法,以全局调用 Vue.prototype.$msgBox = { showMsgBox (options) { if (!instance) { initInstance(); } if (typeof options === 'string') { currentMsg.content = options; } else if (typeof options === 'object') { Object.assign(currentMsg, options); } return currentMsg.showMsgBox(); } }; }; export default MessageBox;
全域使用
// src/main.js import MessageBox from './components/MessageBox/index'; Vue.use(MessageBox);
頁面呼叫
依照先前定義好的方法,可以在各個頁面中愉快的呼叫該元件了。
this.$msgBox.showMsgBox({ title: '添加分类', content: '请填写分类名称', isShowInput: true }).then(async (val) => { // ... }).catch(() => { // ... });
最後來張效果圖
希望大家對Vue.js元件知識由一個更清晰的掌握,大家趕緊動手操作一下吧。
相關推薦:
以上是vue.js實作全域呼叫MessageBox元件的詳細內容。更多資訊請關注PHP中文網其他相關文章!