add bun backend and add upload bitstream component

This commit is contained in:
2025-03-18 17:28:21 +08:00
parent 4980b84da6
commit d766e2ae6a
13 changed files with 178 additions and 17 deletions

17
src/views/TestView.vue Normal file
View File

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