// +build js package main import ( "github.com/mame82/hvue" ) /* type CompModalData struct { *js.Object ShowModal bool `js:"showModal"` } func NewCompModalData(vm *hvue.VM) interface{} { d:= &CompModalData{Object:O()} d.ShowModal = false return d } */ func InitCompModal() { hvue.NewComponent( "modal", // hvue.DataFunc(NewCompModalData), hvue.Template(compModalTemplate), ) } const compModalTemplate = ` `