個人github iSAM2016
在練習寫UI組件的,用到全局的插件,網上看了些資料。看到些的挺好的,我也順便總結一下寫插件的流程;
聲明插件-> 寫插件-> 註冊插件 —> 使用插件vue
先寫文件,有基本的套路
Vue.js 的插件應當有一個公開方法 install 。node
// myPlugin.js export default { install: function (Vue, options) { // 添加的內容寫在這個函數裏面 } };
import myPlugin from './myPlugin.js' Vue.use(myPlugin)
插件的範圍沒有限制——通常有下面幾種:git
// 1. 添加全局方法或屬性 Vue.myGlobalMethod = function () { // 邏輯... } // 2. 添加全局資源 Vue.directive('my-directive', { bind (el, binding, vnode, oldVnode) { // 邏輯... } ... }) // 3. 注入組件 Vue.mixin({ created: function () { // 邏輯... } ... }) // 4. 添加實例方法 Vue.prototype.$myMethod = function (options) { // 邏輯... }
// code Vue.test = function () { alert("123") } // 調用 Vue.test() **經過3.1添加,是在組件裏,經過this.test()來調用** **經過3.2添加,是在外面,經過Vue實例,如Vue.test()來調用**
Vue.filter('formatTime', function (value) { Date.prototype.Format = function (fmt) { //author: meizz var o = { "M+": this.getMonth() + 1, //月份 "d+": this.getDate(), //日 "h+": this.getHours(), //小時 "m+": this.getMinutes(), //分 "s+": this.getSeconds(), //秒 "q+": Math.floor((this.getMonth() + 3) / 3), //季度 "S": this.getMilliseconds() //毫秒 }; if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length)); for (var k in o) if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length))); return fmt; } return new Date(value).Format("yyyy-MM-dd hh:mm:ss"); }) // 調用 {{num|formatTime}}
Vue.mixin({ created: function () { console.log("組件開始加載") } }) 能夠和【實例屬性】配合使用,用於調試或者控制某些功能 / 注入組件 Vue.mixin({ created: function () { if (this.NOTICE) console.log("組件開始加載") } }) // 添加註入組件時,是否利用console.log來通知的判斷條件 Vue.prototype.NOTICE = false;
和組件中方法同名:
組件裏若自己有test方法,並不會 先執行插件的test方法,再執行組件的test方法。而是隻執行其中一個,而且優先執行組件自己的同名方法。這點須要注意
不須要手動調用,在執行對應的方法時會被自動調用的github
//讓輸出的數字翻倍,若是不是數字或者不能隱式轉換爲數字,則輸出null Vue.prototype.doubleNumber = function (val) { if (typeof val === 'number') { return val * 2; } else if (!isNaN(Number(val))) { return Number(val) * 2; } else { return null } } //在組件中調用 this.doubleNumber(this.num);
UI demo函數