1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2025-07-17 14:19:45 +02:00
This commit is contained in:
Xuan Sang LE
2018-08-22 19:56:56 +02:00
parent 3eefab1bdb
commit f253bc471f
4 changed files with 39 additions and 1 deletions

11
apps/views/admin/index.ls Normal file
View File

@ -0,0 +1,11 @@
<?lua
local args = {...}
echo("Admin pages<br />")
local views = args[1]
for k, v in pairs(views) do
echo(k.." -> ")
v:render()
echo("<br/>")
end
--views.__main__:render()
?>

View File

@ -0,0 +1,5 @@
<?lua
local args = {...}
echo("edit page <br/>")
echo(JSON.encode(args))
?>