使用gulp+vue

直接使用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)