vue2/vue3 引用公共js的方法

vue2:

 

1、在main.js同目录下创建common.js文件

function test() {
	...
}

export default {
	test 
}

 

2、在main.js中引入common


import common from "./common.js"

 

3、把common挂载到vue上

Vue.prototype.common = common

  

 

posted @ 2021-11-18 10:46  Lee_Yong  阅读(4481)  评论(0编辑  收藏  举报