forked from opentiny/tiny-vue
28 lines
447 B
Vue
28 lines
447 B
Vue
<template>
|
|
<div class="radio-wrap">
|
|
<tiny-radio v-model="value" label="1" border>单选框 1</tiny-radio>
|
|
<tiny-radio v-model="value" label="2" border>单选框 2</tiny-radio>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { Radio } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyRadio: Radio
|
|
},
|
|
data() {
|
|
return {
|
|
value: '1'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.radio-wrap {
|
|
padding: 20px;
|
|
}
|
|
</style>
|