1、定义一个函数
var tools = {}
tools.isCheck = function(){
}
tools.install = function(Vue,options){
Vue.prototype.$tools =tools
Vue.tools = tools
}
export default tools
2、全局引用
main.js
import tools from './tools'
Vue.use(tools)
3、使用
直接页面使用 this.$tools.isCheck();