vp-switch.vue 381 B

123456789101112131415
  1. <script setup lang="ts">
  2. // for now el-switch does not support customized icon in the dot
  3. // we will implement a simple version of el-switch then update the switch
  4. // component for this feature
  5. </script>
  6. <template>
  7. <div class="switch" role="switch">
  8. <div class="switch__action">
  9. <div class="switch__icon">
  10. <slot />
  11. </div>
  12. </div>
  13. </div>
  14. </template>