basic.vue 289 B

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