美文网首页
使用gulp+vue

使用gulp+vue

作者: 守心向暖 | 来源:发表于2017-07-25 19:38 被阅读0次

直接使用vue.js会因为es6编译失败,解决方法

var contact = require('gulp-concat');
gulp.task('scripts', function () {
    return gulp.src('app/scripts/**/*.js')
        .pipe($.jshint())
        .pipe(contact('vue.min.js'))
        .pipe($.jshint.reporter(require('jshint-stylish')))
        .pipe($.size());
});

相关文章

网友评论

      本文标题:使用gulp+vue

      本文链接:https://www.haomeiwen.com/subject/rhjgkxtx.html