20 lines
339 B
Vue
20 lines
339 B
Vue
|
<script setup="setup">
|
||
|
const store = usePojmiStore()
|
||
|
|
||
|
const props = defineProps({
|
||
|
naslov: String
|
||
|
})
|
||
|
|
||
|
const pojem = computed(() => store.pojmi[props.naslov])
|
||
|
|
||
|
await store.naloziPojme()
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<section class="pojem">
|
||
|
<h2>{{ pojem.naslov }}</h2>
|
||
|
<div class="tekst" v-html="pojem.tekst" />
|
||
|
</section>
|
||
|
</template>
|