12 lines
156 B
Vue
12 lines
156 B
Vue
<template>
|
|
{{ games }}
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
useHead({
|
|
title: "Home",
|
|
});
|
|
|
|
const games = await $fetch("/api/v1/games/front");
|
|
</script>
|