10 lines
177 B
Go
10 lines
177 B
Go
package h
|
|
|
|
import "fmt"
|
|
|
|
type OnClickOpts string
|
|
|
|
func OnClick(actionid string, opt ...OnClickOpts) H {
|
|
return Data("on:click", fmt.Sprintf("@get('/_action/%s')", actionid))
|
|
}
|