mirror of
https://github.com/nuintun/command-manager.git
synced 2025-06-03 01:14:05 +08:00
34 lines
1.0 KiB
HTML
34 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>命令管理器</title>
|
|
<meta http-equiv=Content-Type content="text/html;charset=utf-8">
|
|
<link href="static/css/base.css" rel="stylesheet" type="text/css"/>
|
|
<link href="static/css/index.css" rel="stylesheet" type="text/css"/>
|
|
<script type="text/javascript">require('./static/js/app/index.js');</script>
|
|
</head>
|
|
<body id="app" class="fn-clear">
|
|
<header class="fn-clear">
|
|
<app-configure
|
|
:configure.sync="configure"
|
|
:unique.sync="unique">
|
|
</app-configure>
|
|
<window-control></window-control>
|
|
</header>
|
|
<nav class="ui-project-tree fn-left">
|
|
<app-nav
|
|
:configure.sync="configure"
|
|
:active-index.sync="activeIndex">
|
|
</app-nav>
|
|
</nav>
|
|
<main class="ui-project-main fn-right">
|
|
<app-main
|
|
:active-index.sync="activeIndex"
|
|
:projects.sync="configure.projects"
|
|
:unique.sync="unique">
|
|
</app-main>
|
|
</main>
|
|
<no-data :projects="configure.projects"></no-data>
|
|
</body>
|
|
</html>
|