icon-fix.go 168 B

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