simple-table-fix.go 244 B

12345678910
  1. package vuetify
  2. import h "github.com/theplant/htmlgo"
  3. func VSimpleTable(children ...h.HTMLComponent) (r *VSimpleTableBuilder) {
  4. r = &VSimpleTableBuilder{
  5. tag: h.Tag("table").Children(children...).Attr("is", "v-simple-table"),
  6. }
  7. return
  8. }