uniapp之小程序setData迁移

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")
            },
        }
    }

发表评论

电子邮件地址不会被公开。 必填项已用*标注