13 lines
216 B
Vue
13 lines
216 B
Vue
<script setup lang="ts">
|
|
import Background from "./Background.vue";
|
|
import LeftBar from "./LeftBar.vue";
|
|
import Title from "./Title.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<Background />
|
|
|
|
<LeftBar />
|
|
<Title />
|
|
</template>
|