您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)Vue組件公用方法提取mixin的示例分析的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
多個組件共用一個方法時可以用 mixin
抽取到一個js文件中,作為共用方法
export const common = { // 組件共用屬性 ---------------------------------- data() { return { age: 18 // 設(shè)置一個共用屬性 } }, // --------------------------------------------- // 組件共用方法 --------------------------------------------- methods: { showName() { alert(this.name) // 彈出組件中name屬性的共用方法 } }, // -------------------------------------------------------- // 組件掛載時的共用方法 ---------------------- mounted() { console.log('初始化方法') // 掛載時調(diào)用 }, // ---------------------------------------- }
<template> <div> <div>組件</div> <button @click="showName">彈出姓名</button> </div> </template> <script> // 引入js文件中的方法對象 -------------------- import {common, } from '../pub_js/common.js' // ---------------------------------------- export default { name: 'Student', data() { return { name: '張三' } }, // 調(diào)用 mixin 將組件js與共用js合并 --- mixins: [common, ], // -------------------------------- } </script>
1.data
中的屬性合并后,如果有命名沖突的情況,以組件中的屬性為主,【組件屬性覆蓋共用js中的屬性】
2.methods
中的方法合并后,如果有命名沖突的情況,以組件中的方法為主,【組件方法覆蓋共用js中的方法】
3.mounted等
生命周期方法合并后,會先調(diào)用共用js中的的生命周期函數(shù),再調(diào)用組件中的生命周期函數(shù),【不會進(jìn)行覆蓋】
4.如果是全局共用的方法,可以直掛載到main.js中↓
import Vue from 'vue' import App from './App.vue' Vue.config.productionTip = false // 掛載全局共用方法 ----------------------- import {common, } from 'pub_js/common.js' Vue.mixin(common) // -------------------------------------- new Vue({ render: h => h(App), }).$mount('#app')
感謝各位的閱讀!關(guān)于“Vue組件公用方法提取mixin的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。