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

13 lines
217 B
Vue

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