Feat: 新增快速开始页

This commit is contained in:
Suwings 2022-06-29 19:01:42 +08:00
parent 8da8526d23
commit 9486f1bb6a
3 changed files with 47 additions and 0 deletions

View File

@ -47,6 +47,7 @@ import ProcessConfig from "./views/ProcessConfig";
import ProcessConfigFile from "./views/ProcessConfigFile";
import Schedule from "./views/Schedule";
import Update from "./views/Update";
import Quickstart from "./views/quickstart";
const routes = [
{
@ -185,6 +186,11 @@ const routes = [
name: "登录",
component: Login
},
{
path: "/quickstart",
name: "快速开始",
component: Quickstart
},
{
path: "/update",
name: "版本控制",

View File

@ -0,0 +1,37 @@
<!--
Copyright (C) 2022 Suwings <Suwings@outlook.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
According to the AGPL, it is forbidden to delete all copyright notices,
and if you modify the source code, you must open source the
modified source code.
版权所有 (C) 2022 Suwings <Suwings@outlook.com>
该程序是免费软件您可以重新分发和/或修改据 GNU Affero 通用公共许可证的条款
由自由软件基金会许可证的第 3 由您选择任何更高版本
根据 AGPL 与用户协议您必须保留所有版权声明如果修改源代码则必须开源修改后的源代码
可以前往 https://mcsmanager.com/
-->
<template>
<div>A</div>
</template>
<script>
export default {
components: {},
data: function () {
return {};
},
methods: {
async init() {}
},
async mounted() {}
};
</script>

View File

@ -35,6 +35,10 @@
<Logo></Logo>
<el-menu-item-group>
<template #title>基础功能</template>
<el-menu-item key="/quickstart" index="/quickstart">
<i class="el-icon-coin"></i>
<template #title>快速开始</template>
</el-menu-item>
<el-menu-item key="/overview" index="/overview">
<i class="el-icon-pie-chart"></i>
<template #title>数据监控</template>