Vue 插件開發(fā)
官方文檔
傳送門
// Vue.js 的插件應(yīng)該有一個公開方法 install。這個方法的第一個參數(shù)是 Vue 構(gòu)造器忱反,第二個參數(shù)是一個可選的選項(xiàng)對象:
MyPlugin.install = function (Vue, options) {
// 1. 添加全局方法或?qū)傩? Vue.myGlobalMethod = function () {
// 邏輯...
}
// 2. 添加全局資源
Vue.directive('my-directive', {
bind (el, binding, vnode, oldVnode) {
// 邏輯...
}
...
})
// 3. 注入組件
Vue.mixin({
created: function () {
// 邏輯...
}
...
})
// 4. 添加實(shí)例方法
Vue.prototype.$myMethod = function (methodOptions) {
// 邏輯...
}
}
alert插件開發(fā)
- 先寫個alert組件
<template>
<div class="ComAlert">
<div class="content" v-for="(item, index) in content" :key="index">{{item}}</div>
</div>
</template>
<script>
export default {
name: 'ComAlert',
data () {
return {
content: [],
timer: []
}
},
created () {
},
methods: {
push (text) {
const s = 2000
this.content.unshift(text)
const timer = setTimeout(() => {
this.content.pop()
}, s)
this.timer.push(timer)
}
}
}
</script>
<style scoped lang="less" rel="stylesheet/less">
@import "./Alert.less";
</style>
- 再寫個 alert.js
import ComAlert from './Alert.vue'
const alert = {
install (Vue, option) {
const Alert = Vue.extend(ComAlert)
let $vm = new Alert({
el: document.createElement('div')
});
document.body.appendChild($vm.$el);
Vue.prototype.$_alert = (alertText = '') => {
return $vm.push(alertText)
}
}
}
export default alert
- mian.js
import Alert from './components/Alert/Alert'
Vue.use(Alert)
- 調(diào)用
this.$_alert('提示內(nèi)容')