pull/199/head
xiaojunnuo 2024-09-29 15:03:05 +08:00
parent 15f44e64f7
commit 0874c03882
2 changed files with 3 additions and 5 deletions

View File

@ -25,8 +25,6 @@ export default {
app.component("InfoCircleOutlined", InfoCircleOutlined); app.component("InfoCircleOutlined", InfoCircleOutlined);
app.component("UndoOutlined", UndoOutlined); app.component("UndoOutlined", UndoOutlined);
app.component("TutorialButton", TutorialButton);
app.use(vip); app.use(vip);
app.use(Plugins); app.use(Plugins);
} }

View File

@ -18,8 +18,8 @@
<MenuFoldOutlined v-else /> <MenuFoldOutlined v-else />
</div> </div>
<fs-menu class="header-menu" mode="horizontal" :expand-selected="false" :selectable="false" :menus="frameworkMenus" /> <fs-menu class="header-menu" mode="horizontal" :expand-selected="false" :selectable="false" :menus="frameworkMenus" />
<vip-button class="flex-center header-btn" mode="nav" />
<tutorial-button class="flex-center header-btn" /> <tutorial-button class="flex-center header-btn" />
<vip-button class="flex-center header-btn" mode="nav" />
</div> </div>
<div class="header-right header-buttons"> <div class="header-right header-buttons">
<!-- <button--> <!-- <button-->
@ -85,12 +85,12 @@ import FsThemeSet from "/@/layout/components/theme/index.vue";
import { env } from "../utils/util.env"; import { env } from "../utils/util.env";
import FsThemeModeSet from "./components/theme/mode-set.vue"; import FsThemeModeSet from "./components/theme/mode-set.vue";
import VipButton from "/@/components/vip-button/index.vue"; import VipButton from "/@/components/vip-button/index.vue";
import TutorialSteps from "/@/components/tutorial/tutorial-steps.vue"; import TutorialButton from "/@/components/tutorial/index.vue";
export default { export default {
name: "LayoutFramework", name: "LayoutFramework",
// eslint-disable-next-line vue/no-unused-components // eslint-disable-next-line vue/no-unused-components
components: { components: {
TutorialSteps, TutorialButton,
FsThemeSet, FsThemeSet,
MenuFoldOutlined, MenuFoldOutlined,
MenuUnfoldOutlined, MenuUnfoldOutlined,