13 lines
217 B
Vue
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>
|