点击下面代码中"标题"这条链接的时候,希望链接后缀添加上.html。
如:http://www.xxx.com/1234.html
const router = new VueRouter({
mode: 'history',
routes: [
{ path: '/', name: '/', component: IndexPage },
{ path: '/:id', name: 'detail', component: DetailPage }
]
})
<router-link v-bind:to="'/1234'" class="title">标题</router-link>
参考
https://github.com/vuejs/vue-...
说是不能传参数