We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca2abd2 commit def6a0fCopy full SHA for def6a0f
README.MD
@@ -53,6 +53,25 @@ const close = () => {
53
}
54
</script>
55
```
56
+
57
+## Usage in Nuxt 3
58
59
+For Nuxt 3, just wrap component in `<client-only>`
60
61
+```vue
62
+<template>
63
+ <client-only>
64
+ <vue-bottom-sheet ref="myBottomSheet">
65
+ <h1>Lorem Ipsum</h1>
66
+ <h2>What is Lorem Ipsum?</h2>
67
+ <p>
68
+ <strong>Lorem Ipsum</strong> is simply dummy text
69
+ </p>
70
+ </vue-bottom-sheet>
71
+ </client-only>
72
+</template>
73
+```
74
75
## Props
76
77
| Prop | Type | Description | Example | Defaults |
0 commit comments