// ----- head.js -----export const eye = '纯洁的'
export const nose = '挺拔的'export default {
eye,
nose
}// ----- index.js -----// 想实现
// import { eye, nose } from './head.js'
// export { eye, nose }export { eye, nose } from './head.js'// 想改名export { eye as pureEye, nose as loftyNose } from './head.js'// 把 head.js 所有的(default/eye/nose)导出export * from './head.js'
export * as headObj from './head.js'
// index.html// 静态加载,后面无法拿到js里的变量// 要想和数据互动
推荐阅读
- 首屏时间,你说你优化了,那你倒是计算出给给我看啊!
- 选择篇(021)-下面代码的输出是什么?
- 精读《zustand 源码》
- 浅谈js的垃圾回收机制
- 选择篇(017)-哪个选项是不正确的?
- JavaScript笔记之如何写好JavaScript
- 拉新×23,盈利可能性高出19倍,嵌入式分析到底有多香
- 厉害了,JavaScript 新提案(array.groupBy())
- 【JavaScript Weekly #554】ES2022 特性(类静态初始化块)
- 单元测试(即刻搞定!)