21 lines
456 B
Vue
21 lines
456 B
Vue
<script setup="setup">
|
|
|
|
const store = useStraniStore()
|
|
const nastavitveStore = useNastavitveStore()
|
|
|
|
const { izbraniJezik } = storeToRefs(nastavitveStore)
|
|
|
|
const stran = computed(() => store.strani['YuFu'])
|
|
useHead({meta: [{title: "jugofuturizem"}]})
|
|
|
|
await store.naloziStrani(izbraniJezik.value)
|
|
|
|
watch(izbraniJezik, jezik => {
|
|
store.naloziStrani(jezik)
|
|
})
|
|
|
|
</script>
|
|
<template>
|
|
<section v-if="stran" class="stran" v-html="stran.tekst" />
|
|
</template>
|