亚洲AV无码乱码在线观看性色,免费无码又爽又刺激高潮视频,用你的指尖扰乱我下一部动漫,人妻AV中文系列,人妻熟妇女的欲乱系列

ES6分別暴露export與默認(rèn)暴露export default組件及引入

時(shí)間:2023-10-08 15:30:38 類型:JS/JQUERY
字號(hào):    

ES6中除了單獨(dú)分別export, 及export default外,也可以組合使用

示例如下:

a.js

const R = {name:"莊子",age:18}

export class Bird{}
export default R;

b.js

import R,{Bird} from "./Module"
//R引入的是默認(rèn)暴露,{Bird}引入的是分別暴露
console.log(new Bird(),R.name);


<