当我在laravel项目中运行vue路由器时,我在一个文件夹中运行它可以正常工作,例如在localhost / demo / admin#/ dashboard中它可以正常工作,但是当我在本地文件夹中以localhost运行它时它不起作用/ admin#/仪表板。
答案 0 :(得分:0)
在laravel 6中默认情况下,脚手架不起作用,但是很容易对其进行配置和运行。
通过运行以下步骤安装脚手架:
composer require laravel/ui
比运行
php artisan ui vue
这将产生支架。您应该已经准备就绪。
检查https://laravel.com/docs/6.x/frontend了解更多
另外,如果创建组件,则需要在resources/js/app.js
中定义它,如下所示:
Vue.component('example-component', require('./components/ExampleComponent.vue').default);
答案 1 :(得分:0)
优先考虑这些路由器可能会导致与vue路由器相关的路由中断。