element-plus/docs/.vitepress/vitepress/components/common/vp-switch.vue
qiang a4063fd8d2
docs: accessibility improvement (#11825)
* docs: accessibility improvement for navbar

* docs: accessibility improvement for demo

* refactor: replace ElPopover with ElDropdown

* docs: accessibility improvement for nav-full

* docs: accessibility improvement for back-to-top

* feat: add skip link that jump to the content
2023-03-10 14:43:22 +08:00

16 lines
387 B
Vue

<script setup lang="ts">
// for now el-switch does not support customized icon in the dot
// we will implement a simple version of el-switch then update the switch
// component for this feature
</script>
<template>
<button class="switch" role="switch">
<div class="switch__action">
<div class="switch__icon">
<slot />
</div>
</div>
</button>
</template>