toolbar-title-fix.go 201 B

12345678910
  1. package vuetify
  2. import h "github.com/theplant/htmlgo"
  3. func VToolbarTitle(text string) (r *VToolbarTitleBuilder) {
  4. r = &VToolbarTitleBuilder{
  5. tag: h.Tag("v-toolbar-title").Text(text),
  6. }
  7. return
  8. }