每个组件都需要用某个.js文件,怎么样全局引入呢
在 main.js中
import test from './assets/js/test.js'
Vue.prototype.test = test
在组件中
methods:{
test:function(){
this.test_log()
}
test.js
export default function test_log() {
console.log(123)
这样没用啊 ? 给个正确的使用姿势吧
陪伴而非守候
相关分类