manifest/nuxt/pages/index.vue

11 lines
216 B
Vue
Raw Normal View History

<script setup="setup">
const store = useStraniStore()
const stran = computed(() => store.strani['YuFu'])
await store.naloziStrani()
</script>
<template>
<section class="stran" v-html="stran.tekst" />
</template>