radio-gender.vue
1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<template>
<Radio-group :value="handleValue" @on-change="updateValue">
<Radio :label="gender.id" v-for="gender in genderList" :key="gender.id" :disabled="disable">
<span>{{gender.label}}</span>
</Radio>
</Radio-group>
</template>
<script>
export default {
name: 'RadioGender',
props: {
value: {
type: String
},
disable: {
type: Boolean
}
},
data() {
return {
handleValue: this.value,
genderList: [{
id: '1',
label: '男'
}, {
id: '2',
label: '女'
}, {
id: '3',
label: '通用'
}]
};
},
methods: {
updateValue(newValue) {
this.$emit('input', newValue);
}
},
watch: {
value(newValue) {
this.handleValue = newValue;
}
},
};
</script>
<style>
</style>