21 lines
481 B
Vue
21 lines
481 B
Vue
<script setup="setup">
|
|
const api = useApi()
|
|
|
|
onMounted(() => {
|
|
if (window) {
|
|
window.api = api
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<section class="glava">
|
|
<h1>YUFU</h1>
|
|
<ul class="meni">
|
|
<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>
|
|
</ul>
|
|
</section>
|
|
</template>
|