tiny-vue/examples/sites/demos/mobile-first/app/checkbox/display-only.vue

19 lines
274 B
Vue

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