Index.vue 546 B

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