mirror of
https://github.com/nuintun/command-manager.git
synced 2025-06-07 11:34:05 +08:00
23 lines
941 B
HTML
23 lines
941 B
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-projects.sync="uniqueProjects"></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="activeIndex" :projects.sync="configure.projects" :unique-projects.sync="uniqueProjects"></app-main>
|
|
</main>
|
|
</body>
|
|
</html>
|