vue computed v-model 结合使用

data() {
	return {
		vcodeBtnName: "获取验证码",
		countNum: 120,
		countDownTimer: null,
		ent: {}
	}
},

computed: {
	mobile: {
		get() {
			console.log('我被调用了')
			return this.ent.ent_mobile || ''
		},
		set(val) {
			this.ent.ent_mobile = val
		}
	}
},

posted on 2022-09-09 10:27  小馬過河﹎  阅读(23)  评论(0)    收藏  举报

导航