11 lines
248 B
Vue
11 lines
248 B
Vue
|
<script setup="setup">
|
||
|
const store = useStraniStore()
|
||
|
const stran = computed(() => store.strani['2a1dbd8d-1d09-4901-9b0c-d6f8c84ce213'])
|
||
|
|
||
|
await store.naloziStrani()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<section class="stran" v-html="stran.tekst" />
|
||
|
</template>
|