You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I managed to get QMarkdown installed using a boot file, and it renders OK in dev mode, but it doesn't hot-reload on save. Changes to the rest of my SFC file refresh, but just changing the markdown content doesn't. Not sure why.
<template>
<q-pagepadding>
<!-- eslint-disable vue/html-indent -->
<q-markdownno-heading-anchor-links=1>
<pre>
# This is **markdown**!!
Here's some paragraph text.
And some more. bla bla bla
</pre>
</q-markdown>
<!-- eslint-enable vue/html-indent -->
</q-page>
</template>
<scriptsetuplang="ts">defineOptions({ name: 'IndexPage'});</script>
I also note that I need to wrap the text with <pre>...</pre> or it gets rendered as a single line of text. Separate issue I guess.
The text was updated successfully, but these errors were encountered:
I managed to get QMarkdown installed using a boot file, and it renders OK in dev mode, but it doesn't hot-reload on save. Changes to the rest of my SFC file refresh, but just changing the markdown content doesn't. Not sure why.
Boot file:
(and note, it is registered in the quasar config)
Source file
IndexPage.vue
:I also note that I need to wrap the text with
<pre>...</pre>
or it gets rendered as a single line of text. Separate issue I guess.The text was updated successfully, but these errors were encountered: