export const tt = 'abc'
export function test2() {
alert('test2')
}
import {tt,test2} from '../assets/js/test';
export default {
mounted(){
console.log(tt)
test2();
}
};
注意: {tt,test2} 为按需引进,可能得先安装babel-plugin-import