在 Vue.js 中导航

Navigation in Vue.js

我的 HTML 代码中有以下代码。

<router-link :to="{ path: '/word/',name: 'word', params: { id: word._id }}"></router-link>

我在index.js中的路线设置如下

export default new Router({
    mode: 'history',
    routes: [
        {
            path: '/',
            name: 'mainbody',
            component: MainBody
        },
        {
            path: '/word/:id',
            name: 'word',
            component: Word
        }
    ]
});

但它不起作用。

尝试<router-link :to="'/word/' + word._id"></router-link>