tiny-vue/examples/sites/demos/mobile-first/app/switch/custom-open-close.vue

26 lines
382 B
Vue

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