Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

For the beta versions that supports vue 3, the tabview, tabs and bottomnavigation doesnt work. #1041

Open
stinis87 opened this issue Apr 16, 2023 · 1 comment
Labels
V3 Issues related to V3

Comments

@stinis87
Copy link

When i try to use one of these components in the default starter template for vue 3 beta version, i get an error saying "No known component for element tabview". I do not get this error when i have the same code in a vue 2 version on stackblitz. Any takes anyone?

@vallemar
Copy link
Contributor

@stinis87 you need register the plugins in your app.ts.

import TabsPlugin from '@nativescript-community/ui-material-tabs/vue';
import {BottomSheetPlugin} from "@nativescript-community/ui-material-bottomsheet/vue3";

const app = createApp(App);
app.use(TabsPlugin)
app.use(BottomSheetPlugin)

app.start();

@rigor789 rigor789 added the V3 Issues related to V3 label May 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
V3 Issues related to V3
Development

No branches or pull requests

3 participants