[Vue warn]: Property or method "****" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property. See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.
3条答案
按热度按时间waxmsbnn1#
数据不会添加到表中,因为基本上您是在addNewItem方法中添加空属性。
items list变量是您要插入所有项目的位置。对于表单数据,您应该创建另一个变量来捕获它们,然后将单个对象推送到列表中:
因此,在输入模型中使用www.example.com _name而不是items.property_item.propertyname
然后在addNewItem()方法中将单个对象推入列表
oknrviil2#
您的DataTable组件有一个
:items
属性,但是您没有在实际组件中定义任何属性。我看到您在data选项中有一个items数组,所以如果您将items属性:items="items"
一起删除,应该就可以了。pdtvr36n3#
为了记录在案,我从Vue.js得到了错误行为,错误如下:
原来的原因是我有一个空的脚本标签在我的.vue文件结束
Webkit似乎只使用导出对象的最后一个脚本元素。