-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b457880
commit 7635c07
Showing
3 changed files
with
37 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<script lang="ts" setup> | ||
const content = 'First line \n\n new line with \\n\\n' | ||
const contentTemplateString = `First line | ||
new line with backspace` | ||
const htmlHexaCode = `Title 
 new line` | ||
</script> | ||
|
||
<template> | ||
<NuxtStory> | ||
<NuxtStoryVariant title="Content with \n\n"> | ||
<VMarkdown :content="content" class="text-button-md" /> | ||
</NuxtStoryVariant> | ||
<NuxtStoryVariant title="Template string with backspace"> | ||
<VMarkdown :content="contentTemplateString" class="text-button-md" /> | ||
</NuxtStoryVariant> | ||
<NuxtStoryVariant title="Hexa code"> | ||
<VMarkdown :class="$style['html-code']" :content="htmlHexaCode" class="text-button-md" /> | ||
</NuxtStoryVariant> | ||
</NuxtStory> | ||
</template> | ||
|
||
<style lang="scss" module=""> | ||
.html-code { | ||
white-space: pre-line; | ||
} | ||
</style> |