Skip to content

Switch组件

<template>
  <open-switch v-model="value1" />
  <open-switch v-model="value1" on-color="#13ce66" off-color="#ff4949" style="margin-left: 4px" />
</template>

<script setup lang="ts">
import OpenSwitch from '@open-design/components/switch';
import { ref } from 'vue';

const value1 = ref(true);
</script>