我傳遞一個道具給我的意見,但是當我在控制檯打印結果它發送給我未定義,但在視圖中打印我的ID,因爲未定義我不能做請求/諮詢型這是代碼:組件道具未定義在Vue.js
export default {
props: ['idVideo'],
data:() => ({
videos: []
}),
created() {
//do something after creating vue instance
this.api = new ApiCanal10({})
this.getRelVideos()
},
methods: {
getRelVideos: function() {
//print in the console
console.log(`video/related/${this.idVideo}`)
}
}
}
我會很感激,如果你能幫助我這個問題。
打印前您有錯誤異常。你確定它與此無關嗎? – LiranC
這是一個本地播放器的警告,但它是一個不同的組件,它不會影響自己的項目 –