📅  最后修改于: 2022-03-11 15:03:45.498000             🧑  作者: Mango
data() {
return{
inputs: [{}]
}
},
methods: {
add() {
this.inputs.push({
medicien: ''
});
},
remove(index) {
this.inputs.splice(index, 1);
}
},