下面准备加入----- design ----- 增加按钮 菜单 页面

This commit is contained in:
hawk86104 2023-10-23 09:11:36 +08:00
parent 3130cb870f
commit 2a14fa1cc5
2 changed files with 6 additions and 12 deletions

View File

@ -4,7 +4,7 @@
* @Autor: Hawk
* @Date: 2023-10-16 10:53:09
* @LastEditors: Hawk
* @LastEditTime: 2023-10-21 18:48:57
* @LastEditTime: 2023-10-23 09:03:25
*/
// import { resolve } from 'path';
import { join } from 'path';
@ -20,16 +20,12 @@ export default defineBuildConfig({
},
layout: {
title: 'Ice.gl',
// footer: '',
navigation: 'mixin',
navigation: 'top',
multiTabs: false,
menus: [
{
name: 'index',
},
{
name: 'TheBasic',
},
],
},
enums: {

View File

@ -4,21 +4,19 @@
* @Autor: Hawk
* @Date: 2023-10-16 10:53:09
* @LastEditors: Hawk
* @LastEditTime: 2023-10-21 15:47:00
* @LastEditTime: 2023-10-23 09:03:37
-->
<template>
<Suspense>
<city />
</Suspense>
<div>这里放一些简介</div>
</template>
<script setup>
import { defineRouteMeta } from '@fesjs/fes';
// eslint-disable-next-line import/no-unresolved
import city from 'PLS/digitalCity/pages/city.vue'; //'@/plugins/'
// import city from 'PLS/digitalCity/pages/city.vue'; //'@/plugins/'
defineRouteMeta({
name: 'index',
title: '首页',
title: '开源框架展示',
});
</script>