更新:vue-tables-2现在是预编译的,所以不需要加载器。对于该templates
选项,建议使用作用域插槽,它也不需要任何特殊设置
我正在使用 gulp、webpack 和 babel-loader 来构建一些文件(vue-tables-2):
gulp.task('scripts-vue-tables', function() {
gulp.src('node_modules/vue-tables-2/index.js')
.pipe(webpackstream({
output: {
path: __dirname,
filename: "vue-tables-2.js",
library: 'VueTables2',
libraryTarget: 'var'
}
}
))
.pipe(gulp.dest('public/vendor/vue-tables-2/js/'));
}
在webpack.config.js
我已经包括:
loaders: [
{
test: /\.jsx?$/,
loader: 'babel-loader',
query: {
presets: ["latest", "react", "stage-0"],
plugins: ["transform-vue-jsx"]
}
},
]
并包括在.babelrc
:
{
"presets": ["latest", "react", "stage-0"],
"plugins": ["transform-vue-jsx"]
}
但是,运行scripts-vue-tables
任务会产生错误:
Module parse failed: \node_modules\vue-tables-2\lib\template.jsx Unexpected token (15:7)
You may need an appropriate loader to handle this file type.
注意:一般来说,我尝试按照此处列出的步骤进行操作。