Files
NSG_PORTAL_V2/components/dynamic-page/page-component/templates/other/details/emagazine.vue
T

16 lines
791 B
Vue
Raw Normal View History

2024-05-31 12:39:53 +07:00
<script setup lang="ts">
import { useArticleStore } from '~/stores/articles';
const { currentArticle } = storeToRefs(useArticleStore());
</script>
<template>
<div class="content" v-if="currentArticle">
2024-06-03 12:27:58 +07:00
<h1 id="sub" v-html="currentArticle?.sub" class="text-xl font-bold opacity-60 pb-1"></h1>
<h3 id="title" class="text-2xl font-bold sm:text-3xl xl:text-4xl pb-1" v-html="currentArticle?.title"></h3>
<div id="intro" v-if="currentArticle?.intro" v-html="currentArticle?.intro" class="font-semibold text-xl tracking-widest pb-1"></div>
2024-05-31 12:39:53 +07:00
<div id="article-detail" :class="'text-[15px] tracking-wider'" v-html="currentArticle.detail"
class="[&_img]:mx-auto">
</div>
</div>
2024-05-31 15:31:05 +07:00
</template>
<style lang="scss"></style>