<draggable> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
时间: 2023-11-24 13:53:22 浏览: 67
这个报错通常是由于使用了Vue.js的组件<draggable>时没有正确注册导致的。解决方法如下:
1. 确保已经正确安装了Vue.js和<draggable>组件。
2. 在Vue实例中注册<draggable>组件。例如:
```javascript
import draggable from 'vuedraggable'
export default {
components: {
draggable
}
}
```
3. 如果<draggable>组件是递归使用的,则需要在组件中提供“name”属性。例如:
```javascript
export default {
name: 'my-component',
components: {
'my-component': this
}
}
```
阅读全文