Vue提取公共方法

1、新建commom.js

	export default {
	    nowTime (){
	    }
	}

2、在main.js中引入

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

3、使用

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

4、完事!!!

猜你喜欢

转载自blog.csdn.net/qq_37330613/article/details/84935276