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

22 lines
297 B
Vue

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