文件名称:es6-loader:用于 webpack 的 ES6 模块加载器
文件大小:5KB
文件格式:ZIP
更新时间:2024-07-15 11:56:52
JavaScript
已弃用:请使用更新的转译器,例如 。 es6-loader 为转译 ES6 语法。 用法 import bamboo from 'es6!./bamboo.js' ; class Panda { constructor ( arg = 'default' ) { this . eat = bamboo ; } } export default Panda ; var Panda = require ( 'es6!./panda.js' ) . default ; new Panda ( ) . eat ( ) ; 或者在 webpack 配置中: module: { loaders : [ { test : / \. js $ / , loader : 'es6-loader' } ] } 然后正常导入: import bamboo fro
【文件预览】:
es6-loader-master
----LICENSE-MIT(1KB)
----index.js(1KB)
----package.json(1KB)
----test()
--------basic.test.js(290B)
--------webpack.config.js(108B)
--------all.js(27B)
--------fixtures()
----.gitignore(14B)
----README.md(1021B)
----.gitattributes(11B)