flush -- WIP admin panel
This commit is contained in:
17
admin/component/config.js
Normal file
17
admin/component/config.js
Normal file
@@ -0,0 +1,17 @@
|
||||
(() => {
|
||||
function create(tag) {
|
||||
return document.createElement(tag);
|
||||
}
|
||||
|
||||
pageManager.register("config", function () {
|
||||
return {
|
||||
render: function (...args) {
|
||||
pageManager.setHeader("設定");
|
||||
setTimeout(() => {
|
||||
pageManager.document.innerHTML = "config";
|
||||
pageManager.setLoaderState(false)
|
||||
}, 500);
|
||||
}
|
||||
}
|
||||
});
|
||||
})();
|
||||
Reference in New Issue
Block a user