radio-season.vue
1.1 KB
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
51
52
53
54
<template>
<Radio-group :value="handleValue" @on-change="updateValue" style="width: 350px;">
<Radio :label="season.id" v-for="season in seasonList" :key="season.id" :disabled="disable">
<span>{{season.label}}</span>
</Radio>
</Radio-group>
</template>
<script>
export default {
name: 'RadioSeason',
props: {
value: {
type: String
},
disable: {
type: Boolean
}
},
data() {
return {
handleValue: this.value,
seasonList: [{
id: 'spring',
label: '春秋'
}, {
id: 'summer',
label: '夏'
}, {
id: 'winter',
label: '冬'
}, {
id: 'seasons',
label: '四季'
}]
};
},
methods: {
updateValue(newValue) {
this.$emit('input', newValue);
}
},
watch: {
value(newValue) {
this.handleValue = newValue;
}
}
};
</script>
<style>
</style>