Skip to content

Commit

Permalink
Merge pull request #26 from motea927/dev
Browse files Browse the repository at this point in the history
feat(nuxt): change playground to emit nuxt module release
  • Loading branch information
motea927 authored Jul 1, 2023
2 parents eee327c + 3542194 commit 9331098
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/nuxt/playground/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
v-html="
$safeHtml(`<p style='color:red;'>client default string</p></p>`)
"
></div>
/>

<div v-html="$safeHtml(`<p style='color:red;'>client</p>`)"></div>
<div v-html="$safeHtml(`<p style='color:red;'>client</p>`)" />
</ClientOnly>
<div v-html="$safeHtml(objHtml)"></div>
<div v-html="$safeHtml(objHtml)" />

<div v-html="$safeHtml(`<p style='color:red;'>client</p>`)"></div>
<div v-html="$safeHtml(`<p style='color:red;'>client</p>`)" />
Nuxt module playground!
</div>
</template>
Expand All @@ -23,5 +23,5 @@ const objHtml = ref({
})
setTimeout(() => {
objHtml.value.defaultString = 'settimeout'
}, 1000)
}, 2000)
</script>

0 comments on commit 9331098

Please sign in to comment.