1
0
forked from bot/app

feat: 配置项目的热修改

This commit is contained in:
2024-03-30 06:04:17 +08:00
parent 392376248d
commit c15c604752
11 changed files with 536 additions and 112 deletions

View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<div>
<!-- 横向放置三个饼图分别表示CPU/内存/SWAP占用-->
</div>
</body>

View File

@ -0,0 +1,29 @@
{
"type": "canvas",
"children": [
{
"type": "rect",
"x": 0,
"y": 0,
"width": 100,
"height": 100,
"fill": "red"
},
{
"type": "rect",
"x": 100,
"y": 100,
"width": 100,
"height": 100,
"fill": "green"
},
{
"type": "rect",
"x": 200,
"y": 200,
"width": 100,
"height": 100,
"fill": "blue"
}
]
}