🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
那CommonJS写法 ~~~ //index.js var animal = require('./content.js') //content.js module.exports = 'A cat' ~~~ ES6的写法 ~~~ //index.js import animal from './content' //content.js export default 'A cat' ~~~ [链接](https://blog.csdn.net/arsaycode/article/details/77711854)