tiny-vue/examples/sites/demos/mobile-first/app/checkbox/basic-usage.vue

19 lines
269 B
Vue

<template>
<tiny-checkbox v-model="checked"> 复选框 </tiny-checkbox>
</template>
<script>
import { Checkbox } from '@opentiny/vue'
export default {
components: {
TinyCheckbox: Checkbox
},
data() {
return {
checked: true
}
}
}
</script>