标签:size 重命名 str set api import 括号 mount utils
import
第一种:import
写法:import { awaitAddGoodsList, goodsSkuList ,setSku} from ‘@/api/marketActivity‘
引用:mounted(){
awaitAddGoodsList//直接使用
}
第二种:import
写法:import * as limitedBuy from ‘@/utils/limitedBuy‘
引用:mounted(){
limitedBuy.demo();
}
export
第一种写法:.export function demo(){}
第二种写法:function demo()
export {demo}
第三种也可以重命名
export {demo as demo1}这样import的时候就demo1
export default function(){}
import demo form ‘xxx.js‘
不用大括号
标签:size 重命名 str set api import 括号 mount utils
原文地址:http://www.cnblogs.com/lwwen/p/7755269.html