Files
fengjie-datascreen/src/views/testing/road.vue
2025-01-16 12:37:23 +08:00

14 lines
218 B
Vue

<template>
<box3 />
<box2 />
</template>
<script setup>
import box3 from './components/box-3.vue'
import box2 from './components/box-2.vue'
onMounted(() => {})
</script>
<style lang="scss" scoped></style>