export const username = '张三' // 可以导出
const username = '张三'
export username // 这样就不可以
为什么
export const username = '张三' // 可以导出
const username = '张三'
export username // 这样就不可以
为什么
10 回答11.3k 阅读
5 回答4.9k 阅读✓ 已解决
4 回答3.2k 阅读✓ 已解决
2 回答2.8k 阅读✓ 已解决
3 回答5.2k 阅读✓ 已解决
2 回答4.8k 阅读✓ 已解决
4 回答4.4k 阅读✓ 已解决
除了第一行的写法
export const username = '张三' // 可以导出
其他的要导出对象格式(接口格式)
const username = '张三'
export {username}
参考 https://es6.ruanyifeng.com/#d...
