【vue】定义常量文件,按需引入页面使用
1.写一个js文件import config from '@/app.config';export const CONSTa = 'CONSTa';//export const CONSTb = 'CONSTb';////也可以引用文件 使用变量let Aa = 17;if(config.API_URL){Aa = 17;}else{Aa = 20;}export const AB = Aa;2
·
1.写一个js文件
import config from '@/app.config';
export const CONSTa = 'CONSTa';//
export const CONSTb = 'CONSTb';//
//也可以引用文件 使用变量
let Aa = 17;
if(config.API_URL){
Aa = 17;
}else{
Aa = 20;
}
export const AB = Aa;
2 使用页面,不用this,那个页面需要,那个页面引用
import {CONSTa,CONSTb} from '../../src/store/common'
mounted() {
//使用不用this
console.log(CONSTa,CONSTb),
},
更多推荐
已为社区贡献1条内容
所有评论(0)