Vue提取公共方法
1、新建commom.jsexport default {nowTime (){}}2、在main.js中引入import common from './lib/common'Vue.prototype.common = common;3、使用mounted () {this.common.nowTime();}4、完事!!!...
·
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、完事!!!
更多推荐
已为社区贡献7条内容
所有评论(0)