export default {
data() {
return {
open: false,
nan:{a:"hehe"}
}
},
methods: {
openSlider(e){
//const newOpen=!this.open
this.$set(this.$data,'open',!this.open)
this.$set(this.nan,'a',"haha")
},
}
}
