10 lines
159 B
Vue
10 lines
159 B
Vue
<template>
|
|
<box1 />
|
|
<box2 />
|
|
</template>
|
|
|
|
<script setup>
|
|
import box1 from './components/box-1.vue'
|
|
import box2 from './components/box-2.vue'
|
|
</script>
|