add switch component

This commit is contained in:
2025-03-16 21:49:01 +08:00
parent 8f18560a38
commit d7ca474e39
6 changed files with 114 additions and 7 deletions

11
src/views/LabView.vue Normal file
View File

@@ -0,0 +1,11 @@
<template>
<div>
</div>
</template>
<script setup lang="ts">
</script>
<style scoped lang="postcss"></style>

15
src/views/TestSVG.vue Normal file
View File

@@ -0,0 +1,15 @@
<template>
<div class="w-screen h-screen">
<Switch width="720" height="720" />
</div>
</template>
<script setup lang="ts">
import Switch from '@/components/equipments/Switch.vue';
</script>
<style scoped lang="postcss">
@import "../assets/main.css"
</style>