Index.vue 603 B

123456789101112131415161718
  1. <template>
  2. <app-view>
  3. <template #header>
  4. <app-navbar :title="$t('rules.fwrx')" />
  5. </template>
  6. <HtmlContainer style="padding: 15px;" class="content"
  7. :context="formatHtmlString(document?.documentcontent)" />
  8. </app-view>
  9. </template>
  10. <script lang="ts" setup>
  11. import { useCommonStore } from '@/stores/modules/common'
  12. import HtmlContainer from '@mobile/components/base/html-container/index.vue'
  13. import { formatHtmlString } from '@/filters'
  14. const commonStore = useCommonStore()
  15. const document = commonStore.getDocumentById(1)
  16. </script>