vue props接收动态路由参数

128 阅读1分钟

route.js

{
    path: '/files/:id',
    name: 'filesInfo',
    component: FilesInfo,
    props: true (一定要加上)
}

vue

props: {
    id: {
        type: String,
        default: ''
    }
}