demo1.vue 148 B

12345678
  1. <template>
  2. <m-switch v-model="switchVal"></m-switch>
  3. </template>
  4. <script setup>
  5. import { ref } from "vue";
  6. const switchVal = ref(true);
  7. </script>