警告如下:[Vue warn]: Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-renders. Instead, use a data or computed property based on the prop's value. Prop being mutated: "value"。
代码如下:
<input class="c-input" type="text" placeholder="请填写姓名" v-model="name" />
<script>
export default{
data(){
return {
name:''
}
}
}
</script>
# 2个方法
第一个 :
第二个 :
这2个方法 ,
:before-close
是关键 ;