1.js文件
//方法
const test = () => {
console.log("我是test");
}
//暴露方法
export {
test
}
2.vue文件
//导入
import {test} from "@utils/test.js"
//使用
test();
1.js文件
//方法
const test = () => {
console.log("我是test");
}
//暴露方法
export {
test
}
2.vue文件
//导入
import {test} from "@utils/test.js"
//使用
test();