🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] ## es6模块化的三种方式 ### 第一种 `common.js` ``` var a = 10; function b(){ console.log("b"); } export {a,b} ``` `index.js` ``` //导入 import {a,b} from "/common" //使用 console.log(a) b() ``` ### 第二种 `common.js` ``` var a = 10; function b(){ console.log("b"); } export default{ a, b } ``` `index.js` ``` //导入 import test from "/common" //使用 console.log(text.a); text.b() ``` ### 第三种 不推荐使用 `common.js` ``` export var c = 20; ``` `index.js` ``` //导入 import {c} from "/common" 使用 console.log(c) ```