vue 中scope和{scope}的区别
vue 中scope和{scope}的区别
为什么使用了{scope} template里面使用scope.$index
就报错?
回答
这个应该和解构的含义差不多
const { a, b, c } = { a: 'a', b: 'b', 'c' }const scope = { $index: 1 }
const { $index } = scope;
// if you use {scope} in template
const { $index } = { scope }
所以你什么都拿不到,还报错了
以上是 vue 中scope和{scope}的区别 的全部内容, 来源链接: utcz.com/a/33812.html