提交 a31185f1 编写于 作者: zhujiamin's avatar zhujiamin

debug 数据不回显

上级 a9b32cc3
<template>
<van-radio-group class="app-mobile-radio-list" v-model="curValue" direction="horizontal" @change="change">
<van-radio-group class="app-mobile-radio-list" v-model="curValue" direction="horizontal">
<van-radio v-for="(item,index) in options" :key="index" :name="item.value">{{item.text}}</van-radio>
</van-radio-group>
</template>
......@@ -59,16 +59,12 @@ export default class AppMobRadio extends Vue {
* @type {any}
* @memberof AppMobRadio
*/
public curValue?: any = this.value;
get curValue() {
return this.value;
}
/**
* change事件
*
* @param {*} data
* @memberof AppMobRadio
*/
public change(data: any) {
this.$emit("change", this.curValue);
set curValue(item:any){
this.$emit("change", item);
}
/**
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册