- toTemplate
string toTemplate(DH5Obj aH5Obj)
Undocumented in source. Be warned that the author may not have intended to support it.
- toTemplate
string toTemplate(DH5Obj[] someH5Objs)
- vBind
T vBind(T h5, string name, string value)
- vClass
T vClass(T h5, string[] values)
- vClass
T vClass(T h5, string[string] values, bool sort)
Undocumented in source. Be warned that the author may not have intended to support it.
- vClass
T vClass(T h5, string value)
Undocumented in source. Be warned that the author may not have intended to support it.
- vElse
T vElse(T h5)
- vFor
T vFor(T h5, string value, string key)
* vFor - directive to render a list of items based on an array
* Examples:
* --------------------
* H5LI("{{ item.message }}").vFor("item in items") results in <li v-for="item in items">{{ item.message }}</li>
* H5LI.vFor("item in items")("{{ item.message }}") same result like above
* --------------------
- vHtml
T vHtml(T h5, DH5Obj value)
- vHtml
T vHtml(T h5, string value)
Undocumented in source. Be warned that the author may not have intended to support it.
- vIf
T vIf(T h5, string name, string value)
- vKey
T vKey(T h5, string value, string[] modifiers)
vKey - directive to listen to keyboard events and run some JavaScript when they’re triggered.
- vModel
T vModel(T h5, string value)
- vOn
T vOn(T h5, string eventName, string value, string[] modifiers)
vOn - directive to listen to DOM events and run some JavaScript when they’re triggered.
- vShow
T vShow(T h5, string value)