tiny-vue_version0/examples/sites/demos/pc/app/switch/basic-usage.vue

19 lines
244 B
Vue

<template>
<tiny-switch v-model="value"></tiny-switch>
</template>
<script>
import { Switch } from '@opentiny/vue'
export default {
components: {
TinySwitch: Switch
},
data() {
return {
value: true
}
}
}
</script>