mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-07-11 13:24:41 +10:00
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>
|