Property or method "Name"is not defined on the instance but referenced during render.
1719 ワード
" ">
"Name" placeholder="-- --" >
for="item in Type" :value="item.Name" :key="item.Name">
</el-select>
タイトル[Vue warn]:Property or method"Name"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. 公式Webサイトの表示:Vueではルート・レベルのレスポンス・プロパティを動的に追加できないため、空の値が直接発見された場合でも、すべてのルート・レベルのレスポンス・データ・プロパティを事前に宣言することでVueインスタンスを初期化する必要があります.
Type:
[
{Name:'MSM'},
]
次のように書く必要があります.
Name:[],
Type:
[
{Name:'MSM'},
]