Skip to content

Commit 03a7c59

Browse files
authored
chage vue-3 to vue3
1 parent ef80352 commit 03a7c59

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/bottomsheet/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ this.$showBottomSheet(MyComponent, options)
144144
### NativeScript + Vue 3
145145
```typescript
146146
import { createApp } from 'nativescript-vue';
147-
import { BottomSheetPlugin } from '@nativescript-community/ui-material-bottomsheet/vue-3';
147+
import { BottomSheetPlugin } from '@nativescript-community/ui-material-bottomsheet/vue3';
148148
import { install } from "@nativescript-community/ui-material-bottomsheet";
149149
install();
150150

@@ -153,7 +153,7 @@ app.use(BottomSheetPlugin);
153153
```
154154
Then you can show a Vue component:
155155
```typescript
156-
import { useBottomSheet } from "@nativescript-community/ui-material-bottomsheet/vue-3";
156+
import { useBottomSheet } from "@nativescript-community/ui-material-bottomsheet/vue3";
157157
import MyComponent from 'MyComponent.vue';
158158

159159

src/bottomsheet/vue-3/index.ts renamed to src/bottomsheet/vue3/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { App, createApp } from 'nativescript-vue-3';
1+
import { App, createApp } from 'nativescript-vue3';
22
import { Frame, View, ViewBase } from '@nativescript/core';
33
import { BottomSheetOptions } from '../bottomsheet';
44

0 commit comments

Comments
 (0)