2023-02-22 21:19:55 +01:00
|
|
|
<script setup="setup">
|
2023-03-08 23:13:33 +01:00
|
|
|
const api = useApi()
|
|
|
|
|
2023-02-22 21:19:55 +01:00
|
|
|
onMounted(() => {
|
|
|
|
if (window) {
|
2023-03-08 23:13:33 +01:00
|
|
|
window.api = api
|
2023-02-22 21:19:55 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<section class="glava">
|
|
|
|
<h1>YUFU</h1>
|
|
|
|
<ul class="meni">
|
2023-05-03 21:31:01 +02:00
|
|
|
<li><NuxtLink to="/">Domov</NuxtLink></li>
|
|
|
|
<li><NuxtLink to="/pojmi">Manifest</NuxtLink></li>
|
|
|
|
<li><NuxtLink to="https://yugofuturism.kompot.si/user" target="_blank">admin</NuxtLink></li>
|
2023-02-22 21:19:55 +01:00
|
|
|
</ul>
|
|
|
|
</section>
|
2023-03-08 23:13:33 +01:00
|
|
|
</template>
|