写了一个select组件,具体在业务中使用需要修改下,在继承select的基础上做了修改,重新命名为teble-select, vue提示 [Vue warn]: Error in render function: "TypeError: Cannot read property 'name' of undefined" 这是啥原因,是我select组件写的有问题导致的吗? 请教下同志们
select组件:
{{selected.name}}
- {{item.name}}
组件是可以正常使用的,但是重新包装下 就会提示name undefined ??
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
options 有可能为空吗?如果有可能为空,那么 selected 有可能是 undefined
如果涉及到异步,在这个组件模板根元素上加 v-if="options.length !== 0"