demo4.vue 534 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <m-switch
  3. v-model="switchVal"
  4. size="large"
  5. active-text="启用"
  6. inactive-text="停用">
  7. </m-switch>
  8. <m-switch
  9. v-model="switchVal"
  10. active-text="启用"
  11. inactive-text="停用"
  12. style="display:block;margin-top:10px">
  13. </m-switch>
  14. <m-switch
  15. v-model="switchVal"
  16. size="small"
  17. active-text="启用"
  18. inactive-text="停用"
  19. style="display:block;margin-top:10px">
  20. </m-switch>
  21. </template>
  22. <script setup>
  23. import { ref } from "vue";
  24. const switchVal = ref(true);
  25. </script>