Falsches Ausgabebild auf der Konsole
Dies ist ein Bild des Codes, das den Fehler zeigt
您的代码中既没有名为 tab 的属性,也没有名为 Index 的属性 定义数据部分并添加这些属性
data() { return { tab: null, Index: null } }
此外,除了 console.log 之外,我没有看到这些变量的任何用法。 因此,如果这是真的,则无需定义 data() 部分。您可以直接发出参数,例如
console.log
data()
methods: { removeSection(idx) { this.$emit('remove', idx); } }
您的代码中既没有名为 tab 的属性,也没有名为 Index 的属性 定义数据部分并添加这些属性
此外,除了
console.log
之外,我没有看到这些变量的任何用法。 因此,如果这是真的,则无需定义data()
部分。您可以直接发出参数,例如