13 lines
250 B
Vue
13 lines
250 B
Vue
<script setup lang="ts">
|
|
import Background from "./Background.vue";
|
|
import Buttons from "./Buttons/Buttons.vue";
|
|
|
|
const selectedButton: "game" | "pictochat" | "downloadPlay" = "game";
|
|
</script>
|
|
|
|
<template>
|
|
<Background />
|
|
|
|
<Buttons />
|
|
</template>
|