tiny-vue/examples/docs/resources/pc/demo/checkbox/basic-usage.vue

19 lines
278 B
Vue

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