关于Laravel5.4 Vuejs编译失败的问题处理
Laravel  /  管理员 发布于 2年前   154
下面由laravel教程栏目给大家介绍关于Laravel5.4 Vuejs编译失败的问题处理方法,希望对需要的朋友有所帮助!
在使用Laravel5.4 进行vuejs组件化测试时,出现了这样的错误:
vagrant@homestead:~/Code/zhihu-app$ gulp[00:35:03] Using gulpfile ~/Code/zhihu-app/gulpfile.js[00:35:03] Starting 'all'...[00:35:03] Starting 'sass'...[00:35:09] Finished 'sass' after 5.74 s[00:35:09] Starting 'webpack'...{ [Error: ./resources/assets/js/components/Example.vueModule parse failed: /home/vagrant/Code/zhihu-app/resources/assets/js/components/Example.vue Unexpected token (1:0)You may need an appropriate loader to handle this file type.| <template>| <div class="container">| <div class="row"> @ ./resources/assets/js/app.js 17:26-61] message: './resources/assets/js/components/Example.vue\nModule parse failed: /home/vagrant/Code/zhihu-app/resources/assets/js/components/Example.vue Unexpected token (1:0)\nYou may need an appropriate loader to handle this file type.\n| <template>\n| <div class="container">\n| <div class="row">\n @ ./resources/assets/js/app.js 17:26-61', showStack: false, showProperties: true, plugin: 'webpack-stream', __safety: { toString: [Function: bound ] } }
从抛出的错误我们可以看到,是未引入 'laravel-elixir-vue-2',
所以,我们需要下载相应的包,然后引入到gulpfile.js文件中。
var elixir = require('laravel-elixir');require('laravel-elixir-vue-2');// recommended for vue 2elixir(function(mix) { mix.sass('app.scss') .webpack('app.js'); mix.version(['js/app.js', 'css/app.css'])});
如果出现Error: Cannot find module 'laravel-elixir-vue-2'错误,则需要下载laravel-elixir-vue-2:
npm install laravel-elixir-vue-2 --save-dev
有关详情,请看GitHub laravel-elixir-vue-2(https://github.com/vuejs/laravel-elixir-vue-2)包用法
以上就是关于Laravel5.4 Vuejs编译失败的问题处理的详细内容,更多请关注其它相关文章!
博主 在
2023年国务院办公厅春节放假通知:1月21日起休7天中评论 @ xiaoB 你只管努力,剩下的叫给天意;天若有情天亦老,..xiaoB 在
2023年国务院办公厅春节放假通知:1月21日起休7天中评论 会不会春节放假后又阳一次?..BUG4 在
你翻墙过吗?国内使用vpn翻墙可能会被网警抓,你需了解的事中评论 不是吧?..博主 在
go语言+beego框架中获取get,post请求的所有参数中评论 @ t1 直接在router.go文件中配就ok..Jade 在
如何在MySQL查询中获得当月记录中评论 Dear zongscan.com team, We can skyroc..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号