關於vue.extend的使用及說明
1.Vue.extend的使用
- 參數:對象
- 用法:使用Vue構造器,創建一個“子類”,參數是一個包含組件選項的對象,其中,data選項中必須是函數
- 描述:Vue.extend返回的是一個“擴展實例構造器”,也就是預設瞭部分選項的Vue的實例構造器,它常常服務於Vue.component用來生成組件,可以簡單理解為當在模板中遇到該組件作為標簽的自定義元素時,會自動調用“擴展實例構造器”來生產組件實例,並掛在到自定義元素上
- Vue.extend屬於全局api
- Vue.extend通常用於獨立主鍵開發
- Vue.extend通常和Vue.extend + $mount一起使用
2.在什麼情況下使用Vue.extend
- 組件模板都是事先就創建好的,要是我想從接口動態渲染組件怎麼辦?
- 有內容都是在 #app 下渲染,註冊組件都是在當前位置渲染。如果我要實現一個類似於 window.alert() 提示組件要求像調用 JS 函數一樣調用它,該怎麼辦?
- 全局組件
3.舉例
比如我們有一個要求就是:實現一個類似於element ui 的 Toast 單框,而element ui 的 Toast 彈框又不能滿足我們現階段的需求,那麼就可以使用Vue.extend + $mountl來實現。
如下圖
如上圖所示
建立一個Toast.vue 在這個裡面寫你想要的Toast 彈框樣式
<template> <div class="CustToast" :class="type" v-if="showToast"> <span class="icon"> <img :src="iconSrc" /> </span> {{ message }} </div> </template> <script> export default { /** * 自己封裝的Toast v0.2 * params: showToast Boolean 是否激活toast 默認 false * params: type String toast提示類型 共normal success,fail,warning 四個選項 默認normal * params: message String toast消息 * params: duration Number toast顯示時間 默認 3000ms * */ name: 'CustToast', data () { return { showToast: true, type: 'normal', message: '消息提示', duration: 3000 } }, computed: { iconSrc () { window.console.log('當前類型', this.type) const tipType = ['normal', 'success', 'warning', 'fail'] if (tipType.includes(this.type)) { return require(`@/assets/img/common/${this.type}.svg`) } else { // eslint-disable-next-line no-throw-literal throw 'Toast type數據隻允許為 normal, success, warning, fail 四種其中的一種,默認為normal' } } } } </script> <style scoped> .CustToast { position: fixed; left: 50%; top: 50%; background: rgb(233, 233, 235); padding: 10px; border-radius: 5px; transform: translate(-50%, -50%); animation: show-toast 0.2s; color: #909399; overflow: hidden; display: flex; align-items: center; } @keyframes show-toast { from { opacity: 0; } to { opacity: 1; } } .success { color: #67c23a; background: rgb(225, 243, 216); } .warning { color: #e6a23c; background: rgb(250, 236, 216); } .fail { color: #f56c6c; background: rgb(253, 226, 226); } .icon img { width: 20px; height: 20px; margin-top: 3px; margin-right: 4px; } </style>
新建一個index.js文件
在點js 文件中寫一下代碼
import vue from 'vue' // 導入自定義到Toast組件 import CustToast from './CustToast.vue' // 生成一個擴展實例構造器 const ToastConstructor = vue.extend(CustToast) // 定義彈出組件的函數 接收三個參數 消息 toast類型 顯示時間 function showToast (message, type = 'normal', duration = 2000) { // 實例化一個 CustToast.vue const _toast = new ToastConstructor({ data () { return { showToast: true, type: type, message: message, duration: duration } } }) // 把實例化的 CustToast.vue 添加到 body 裡 const element = _toast.$mount().$el document.body.appendChild(element) // duration時間到瞭後隱藏 setTimeout(() => { _toast.showToast = false }, duration) } // 需要在main.js 裡面使用 Vue.use(showToast); showToast.install = (Vue) => { // 將組件註冊到 vue 的 原型鏈裡去, // 這樣就可以在所有 vue 的實例裡面使用 this.$toast() Vue.prototype.$toast = showToast } // 導出 export default showToast
在你的vue項目的 main.js 中導入就可以全局使用瞭
使用
使用效果
總結
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- vue中使用vant的Toast輕提示報錯的解決
- Vue實現全局的toast組件方式
- 通過vue.extend實現消息提示彈框的方法記錄
- Vue封裝全局toast組件的完整實例
- 使用Vant如何完成各種Toast提示框