You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
533 B

<template>
<section class="flex justify-evenly items-center flex-wrap">
<topLeft />
<topRight />
<bottomLeft />
<bottomRight />
</section>
</template>
<script>
import topLeft from "./topLeft/index.vue";
import topRight from "./topRight/index.vue";
import bottomLeft from "./bottomLeft/index.vue";
import bottomRight from './bottomRight/index.vue';
export default {
data() {
return {
}
},
components: {
topLeft,
topRight,
bottomLeft,
bottomRight,
},
};
</script>
<style></style>