basic.vue 299 B

123456789101112131415
  1. <template>
  2. <el-switch v-model="value1" />
  3. <el-switch
  4. v-model="value2"
  5. class="ml-2"
  6. style="--el-switch-on-color: #13ce66; --el-switch-off-color: #ff4949"
  7. />
  8. </template>
  9. <script lang="ts" setup>
  10. import { ref } from 'vue'
  11. const value1 = ref(true)
  12. const value2 = ref(true)
  13. </script>