How do I make Example.vue update in Laravel?

杀马特。学长 韩版系。学妹 提交于 2019-12-07 07:32:27

You need to install the node dependencies and then compile them.

  1. Install node.js
  2. From your projects root run npm install
  3. From your projects root run npm run dev

Your browser may also be showing the cached version. Chrome has a setting that you can have the cache disabled while the inspector is open.

You can also check it by opening your project in other browsers.

If when running npm run dev dies without any message of any kind you can delete your node_modules folder then run npm install and then compile your assets again.

You may also need to clear and rebuild a few other caches with commands:

composer dump-autoload
php artisan clear-compiled
php artisan cache:clear
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!