tiny-vue_version0/examples/sites/demos/pc/app/checkbox/basic-usage-composition-api...

11 lines
241 B
Vue

<template>
<tiny-checkbox v-model="checked" name="tiny-checkbox">复选框</tiny-checkbox>
</template>
<script setup>
import { ref } from 'vue'
import { Checkbox as TinyCheckbox } from '@opentiny/vue'
const checked = ref(true)
</script>