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

debug 数据不回显

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