1、新建commom.js

	export default 是ES6语法,表示指定默认输出。import的时候不用带大括号
	
	export default {
	    nowTime (){
	    }
	}

2、在main.js中引入

import common from './lib/common'
Vue.prototype.common = common;

3、使用

mounted () {
	this.common.nowTime();
}

4、完事!!!

Logo

前往低代码交流专区

更多推荐