Vue插件的书写和使用

1、在工程目录下新建一个plugins文件夹
2、在该文件夹下新建插件文件,该文件为.js后缀结尾,比如:vueAjax.js
3、vueAjax.js的内容如下:

export default {
//必须要提供一个install方法
//install方法的第一个参数为Vue(大小写不限,建议用大写)
install(Vue,options){
Vue.say = function(){console.log(‘helloworld’)}
}
}

4、使用的时候在main.js中import导入插件,然后Vue.use使用插件,如下:

//main.js

import vueAjax from ‘./plugins/vueAjax’;

Vue.use(vueAjax,{name:‘zhangsan’,age:22})

你可能感兴趣的:(Vue)