11 lines
200 B
Vue
11 lines
200 B
Vue
<script setup lang="ts">
|
|
import Background from "./Background.vue";
|
|
import Buttons from "./Buttons.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<Background />
|
|
<Buttons />
|
|
<AchievementsFadeToBlack />
|
|
</template>
|