首頁  >  文章  >  php框架  >  關於Laravel5.4 Vuejs編譯失敗的問題處理

關於Laravel5.4 Vuejs編譯失敗的問題處理

藏色散人
藏色散人轉載
2020-04-26 17:22:082167瀏覽

下面由laravel教學專欄跟大家介紹Laravel5.4 Vuejs編譯失敗的問題處理方法,希望對需要的朋友有幫助!

關於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.vue
Module 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: &#39;./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&#39;,
  showStack: false,
  showProperties: true,
  plugin: &#39;webpack-stream&#39;,
  __safety: { toString: [Function: bound ] } }

從拋出的錯誤我們可以看到,是未引入'laravel-elixir-vue-2',

#所以,我們需要下載對應的套件,然後引入到gulpfile.js檔案中。

var elixir = require(&#39;laravel-elixir&#39;);
require(&#39;laravel-elixir-vue-2&#39;);// recommended for vue 2
elixir(function(mix) {
    mix.sass(&#39;app.scss&#39;)
        .webpack(&#39;app.js&#39;);
    mix.version([&#39;js/app.js&#39;, &#39;css/app.css&#39;])
});

如果出現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編譯失敗的問題處理的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:segmentfault.com。如有侵權,請聯絡admin@php.cn刪除