一、定义插件
plugin.js --> export default{} --> install() -->
// 全局过滤器
Vue.filter('myFilter', function (value) {return value.slice(0, 4);
});// 全局指令
Vue.directive("fbind", {bind(element, binding) {element.value = binding.value;},inserted(element, binding) {element.style.backgroundColor = 'green';element.focus();},update(element, binding) {element.value = binding.value;}
});// 全局混合
Vue.mixin({data() {return {x: 100,y: 200}},
});// vue 实例上定义属性
Vue.prototype.hello = () => console.log('hello');
二、使用插件
// 在 main.js 中
Vue.use(插件名);// 如果需要传参
Vue.use(plugins, 1, 2, 3); // main.js
install(Vue, a, b, c) {} // plugin.js
// a: 1
// b: 2
// c: 3