Skip to content

Commit

Permalink
convert all markdown to ty-markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
yeus committed Jun 9, 2024
1 parent dacec2e commit bf1e75f
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/pages/MarkdownPage.vue
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
<template>
<q-page padding>
<q-markdown
v-if="markdownContent"
:src="markdownContent"
/>
<ty-markdown v-if="markdownContent" :src="markdownContent" />
</q-page>
</template>

<script setup lang="ts">
import TyMarkdown from 'src/components/tyMarkdown.vue';
import { ref, onMounted } from 'vue';
import { QMarkdown } from '@quasar/quasar-ui-qmarkdown';
import '@quasar/quasar-ui-qmarkdown/dist/index.css';
import { useRouter } from 'vue-router';
const router = useRouter();
Expand Down

0 comments on commit bf1e75f

Please sign in to comment.