我如何在单击按钮时添加两个 v-text-fields,如果我需要更多 v-text-fields,我点击按钮,它会出现在我的内容中。我想类似这样
我希望你能明白。
<v-container fluid>
<v-row align="center" >
<v-col >
<v-text-field color="info" v-model="new.name" label="Name" required></v-text-field>
</v-col>
<v-col>
<v-select color="info" :items="arrResp" v-model="new.idResp" label="Boss" required></v-select>
</v-col>
</v-row>
</v-container>
Run Code Online (Sandbox Code Playgroud)
感谢您的帮助。