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 cefe101 commit b766fe4Copy full SHA for b766fe4
packages/bottomsheet/README.md
@@ -143,11 +143,12 @@ this.$showBottomSheet(MyComponent, options)
143
144
### NativeScript + Vue 3
145
```typescript
146
-import Vue from 'nativescript-vue';
+import { createApp } from 'nativescript-vue';
147
import { BottomSheetPlugin } from '@nativescript-community/ui-material-bottomsheet/vue-3';
148
import { install } from "@nativescript-community/ui-material-bottomsheet";
149
install();
150
151
+const app = createApp(...);
152
app.use(BottomSheetPlugin);
153
```
154
Then you can show a Vue component:
0 commit comments