Heim > Fragen und Antworten > Hauptteil
P粉6161110382023-09-04 16:19:58
我看到很多东西,为了清楚地回答你的问题,v-for是用在元素上的。
<template> // For mor readability i recommend you do bind your property: // - name={{selector_name}} become :name="selector_name" <select :name="selector_name" class= "combobox" :id="selector_id"> <!-- v-for is required with a unique key, you can take the index and use it --> <option v-for="(opt, index) in selector_options" :key="`opt ${index}`" value=opt> {{ opt }} </option> </select> </template>
您不能定义同名的 props 和 data。 Props,在数据中注入属性和值。 完全相同,但数据来自父级,您可以在父级中将值传递给子级。
因此,如果您需要传递数据,请使用 props,但不要在数据内部定义它。
有一个工作示例所有这些(我使用数据而不是道具来提高可读性)。< /p>