Webpack之libraryExport草稿
看 element 代码有个不太清楚的点,
src/index.js 中
export default {
install,
Input
}
1
2
3
4
2
3
4
使用时
import Element from 'element-ui'
Vue.use(Element)
// 为什么这里可以取到 Input??
import { Input } from 'element-ui'
Vue.component(Input.name, Input)
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
原来是 webpack output.libraryExport
配置的问题
- commonjs 和 es module 的转换
- nodejs 中使用 es module
编辑 (opens new window)
上次更新: 2024/09/01, 23:56:56