P粉0601123962023-08-26 23:14:24
範本字串只使用反引號,但你的字串同時使用了單引號和反引號。
替換值(route.params.id
)引用了一個在你的範例中似乎未定義的route
變數。我認為你想要訪問this.$route
,所以實際的替換應該是this.$route.params.id
#items
陣列應該像這樣:
export default { data() { return { items: [ { title: 'List User', url: `/user/function/listUser/${this.$route.params.id}` }, { title: 'structure User', url: `/user/function/structUser/${this.$route.params.id}` } ] } } }
P粉2933419692023-08-26 09:53:54
這是一個例子
`/user/function/structUser/${this.$route.params.id}`
另外,也許嘗試在一個computed
中使用它,因為它可能不是計算屬性。