Open ronnygunawan opened 3 years ago
Basically set of web components tags which allows us to code an app using only HTML tags:
Tags (draft)
<if cond=""></if> <else></else> <elseif cond=""></elseif> <switch value=""></switch> <case value=""></case> <for var="" in=""></for> <while cond=""></while> <data var="" src="" />
Example:
<body> <data var="cities" src="/cities.json" /> <select> <for var="city" in="cities"> <bind prop="value" value="city"> <option><text value="city" /></option> </bind> </for> </select> </body>
Basically set of web components tags which allows us to code an app using only HTML tags:
Tags (draft)
Example: