uim.vue

Undocumented in source.

Modules

apps
module uim.vue.apps
Undocumented in source.
base
module uim.vue.base
Undocumented in source.
classes
module uim.vue.classes
Undocumented in source.
content
module uim.vue.content
Undocumented in source.
data
module uim.vue.data
Undocumented in source.
global
module uim.vue.global
Undocumented in source.
helpers
module uim.vue.helpers
Undocumented in source.
html
module uim.vue.html
Undocumented in source.
routers
module uim.vue.routers
Undocumented in source.
state
module uim.vue.state
Undocumented in source.

Public Imports

std.stdio
public import std.stdio;
Undocumented in source.
std.string
public import std.string;
Undocumented in source.
vibe.vibe
public import vibe.vibe;
Undocumented in source.
uim.core
public import uim.core;
Undocumented in source.
uim.oop
public import uim.oop;
Undocumented in source.
uim.html
public import uim.html;
Undocumented in source.
uim.javascript
public import uim.javascript;
Undocumented in source.
uim.vue.apps
public import uim.vue.apps;
Undocumented in source.
uim.vue.classes
public import uim.vue.classes;
Undocumented in source.
uim.vue.content
public import uim.vue.content;
Undocumented in source.
uim.vue.data
public import uim.vue.data;
Undocumented in source.
uim.vue.base
public import uim.vue.base;
Undocumented in source.
uim.vue.html
public import uim.vue.html;
Undocumented in source.
uim.vue.helpers
public import uim.vue.helpers;
Undocumented in source.
uim.vue.global
public import uim.vue.global;
Undocumented in source.
uim.vue.routers
public import uim.vue.routers;
Undocumented in source.
uim.vue.state
public import uim.vue.state;
Undocumented in source.

Members

Aliases

LAYOUTFUNC
alias LAYOUTFUNC = string function(string, string[string])
Undocumented in source.

Functions

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)

* toTemplate:

vBind
T vBind(T h5, string name, string value)

* vBind:

vClass
T vClass(T h5, string[] values)

* vClass:

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)

* vElse:

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:

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)

* vIf:

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)

* vModel:

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)

* vShow:

Meta