Laravel Vue应用程序不返回具有URL的特定页面

时间:2018-03-18 17:19:22

标签: php laravel vue.js vuejs2 vue-router

在我的laravel vue应用程序中设置404路由以返回前端组件/页面的问题。

当我访问某个特定网址时,例如" localhost / myapp / about"它不会返回该特定组件或页面。 这就是我的路由器的设置方式。

const router = new VueRouter({
    mode: 'history',
    routes: [
        {
            path: '/',
            name: 'home',
            component: Home
        },
        {
            path: 'about',
            name: 'about',
            component: About,
        },
    ],
});

我已尝试将其添加到laravel中的路径文件中,但仍有问题

Route::get('{path}', function () {
    return view('index');})->where( 'path', '([A-z\d-\/_.]+)?' );

0 个答案:

没有答案