- <template>
- <app-view>
- <template #header>
- <app-navbar :title="$t('rules.fwrx')" />
- </template>
- <HtmlContainer style="padding: 15px;" class="content" :context="formatHtmlString(commonStore.getDocumentById(1))" />
- </app-view>
- </template>
- <script lang="ts" setup>
- import { useCommonStore } from '@/stores/modules/common'
- import HtmlContainer from '@mobile/components/base/html-container/index.vue'
- import { formatHtmlString } from '@/filters'
- const commonStore = useCommonStore()
- </script>
|