forked from opentiny/tiny-vue
24 lines
474 B
Vue
24 lines
474 B
Vue
<template>
|
|
<tiny-switch>
|
|
<template #active-icon>
|
|
<TinyIconArrowLeft />
|
|
</template>
|
|
<template #inactive-icon>
|
|
<TinyIconArrowRight />
|
|
</template>
|
|
</tiny-switch>
|
|
</template>
|
|
|
|
<script>
|
|
import { Switch } from '@opentiny/vue'
|
|
import { IconArrowLeft, IconArrowRight } from '@opentiny/vue-icon'
|
|
|
|
export default {
|
|
components: {
|
|
TinySwitch: Switch,
|
|
TinyIconArrowLeft: IconArrowLeft(),
|
|
TinyIconArrowRight: IconArrowRight()
|
|
}
|
|
}
|
|
</script>
|