We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a302447 commit 8dd0b3eCopy full SHA for 8dd0b3e
README.md
@@ -111,7 +111,9 @@ pnpm build:dev
111
```html
112
<!-- App.vue -->
113
<template>
114
- <Toaster />
+ <ClientOnly>
115
+ <Toaster />
116
+ </ClientOnly>
117
<button @click="() => toast('My first toast')">Render a toast</button>
118
</template>
119
playground/app.vue
@@ -1,6 +1,8 @@
1
2
<div>
3
- <Toaster position="top-center" />
4
+ <Toaster position="top-center" />
5
6
7
<button @click="$toast('Render a toast')">Render a toast</button>
8
</div>
0 commit comments