14 lines
218 B
Vue
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>
|