tiny-vue/examples/docs/resources/pc/demo/switch/basic-usage.vue

14 lines
186 B
Vue

<template>
<tiny-switch></tiny-switch>
</template>
<script lang="jsx">
import { Switch } from '@opentiny/vue'
export default {
components: {
TinySwitch: Switch
}
}
</script>