• Stars
    star
    117
  • Rank 292,394 (Top 6 %)
  • Language
    Rust
  • Created about 4 years ago
  • Updated over 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Vuetify components for the Yew Framework

Yewtify

Vuetify components for the Yew framework.

Usage

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>
}

Already available components

  • 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)

Adding additional components

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.