您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“vue.extend如何使用”,內容詳細,步驟清晰,細節處理妥當,希望這篇“vue.extend如何使用”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
參數:對象
用法:使用Vue構造器,創建一個“子類”,參數是一個包含組件選項的對象,其中,data選項中必須是函數
描述:Vue.extend返回的是一個“擴展實例構造器”,也就是預設了部分選項的Vue的實例構造器,它常常服務于Vue.component用來生成組件,可以簡單理解為當在模板中遇到該組件作為標簽的自定義元素時,會自動調用“擴展實例構造器”來生產組件實例,并掛在到自定義元素上
Vue.extend屬于全局api
Vue.extend通常用于獨立主鍵開發
Vue.extend通常和Vue.extend + $mount一起使用
組件模板都是事先就創建好的,要是我想從接口動態渲染組件怎么辦?
有內容都是在 #app 下渲染,注冊組件都是在當前位置渲染。如果我要實現一個類似于 window.alert() 提示組件要求像調用 JS 函數一樣調用它,該怎么辦?
全局組件
比如我們有一個要求就是:實現一個類似于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 中導入就可以全局使用了
使用
使用效果
讀到這里,這篇“vue.extend如何使用”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。