Vuetify components for the Yew framework.
Add this crate to your dependencies list in Cargo.toml
:
yewtify = { git = "https://github.com/yewstack/yewtify" }
And use components in html!
macro:
html! {
<yewtify::App>
<yewtify::NavigationDrawer>
</yewtify::NavigationDrawer>
</yewtify::App>
}
- App (v-app)
- NavigationDrawer (v-navigation-drawer)
- List (v-list)
- ListItem (v-list-item)
- ListItemAction (v-list-item-action)
- ListItemAvatar (v-list-item-avatar)
- ListItemContent (v-list-item-content)
- ListItemTitle (v-list-item-title)
This is still a work in progress... feel free to add additional components.
To port a component that hasn't been ported yet open this folder:
https://github.com/vuetifyjs/vuetify/tree/master/packages/vuetify/src/components
Choose a component you need and add it to the src/components
directory.