P粉2427419212024-03-23 00:11:08
您的程式碼中既沒有名為 tab 的屬性,也沒有名為 Index 的屬性 定義資料部分並新增這些屬性
data() { return { tab: null, Index: null } }
此外,除了 console.log
之外,我沒有看到這些變數的任何用法。
因此,如果這是真的,則無需定義 data()
部分。您可以直接發出參數,例如
methods: { removeSection(idx) { this.$emit('remove', idx); } }