custom-icons.vue 432 B

12345678910111213141516171819
  1. <template>
  2. <el-switch v-model="value1" :active-icon="Check" :inactive-icon="Close" />
  3. <br />
  4. <el-switch
  5. v-model="value2"
  6. class="mt-2"
  7. style="margin-left: 24px"
  8. inline-prompt
  9. :active-icon="Check"
  10. :inactive-icon="Close"
  11. />
  12. </template>
  13. <script setup lang="ts">
  14. import { ref } from 'vue'
  15. import { Check, Close } from '@element-plus/icons-vue'
  16. const value1 = ref(true)
  17. const value2 = ref(true)
  18. </script>