tiny-vue/examples/sites/demos/mobile/app/radio/base.vue

30 lines
373 B
Vue

<template>
<div class="demo">
<p>默认</p>
<tiny-radio v-model="value"></tiny-radio>
</div>
</template>
<script>
import { Radio } from '@opentiny/vue'
export default {
components: {
TinyRadio: Radio
},
data() {
return {
value: false
}
}
}
</script>
<style>
.demo {
height: 100%;
overflow-y: scroll;
padding: 20px;
}
</style>