manifest/nuxt/pages/index.vue

30 lines
492 B
Vue
Raw Normal View History

<script setup="setup">
const store = useStraniStore()
const stran = computed(() => store.strani['YuFu'])
2024-01-06 17:53:50 +01:00
useHead({meta: [{title: "jugofuturizem"}]})
await store.naloziStrani()
</script>
<template>
<section class="stran" v-html="stran.tekst" />
</template>
2024-01-06 17:54:42 +01:00
<style>
body {
font-family: Inter;
}
.gumb {
display: block;
padding: .2rem .5rem;
font-family: Trailers;
font-size: 2rem;
cursor: pointer;
}
.etherpad-textarea {
height: 25rem;
}
</style>