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); } }