mirror of
https://gitee.com/myxzgzs/boyue-ui-admin-uniapp
synced 2025-08-09 17:02:44 +08:00
29 lines
1.1 KiB
Vue
29 lines
1.1 KiB
Vue
<!-- 使用 type="home" 属性设置首页,其他页面不需要设置,默认为page;推荐使用json5,更强大,且允许注释 -->
|
||
<route lang="json5" type="home">
|
||
{
|
||
style: { navigationBarTitleText: '首页' },
|
||
}
|
||
</route>
|
||
<template>
|
||
<view class="bg-white h-full overflow-hidden pt-2 px-4">
|
||
<view class="mt-8">
|
||
<image src="/static/logo.svg" alt="" class="w-40 h-40 block mx-auto" />
|
||
</view>
|
||
<view class="text-center text-4xl main-title-color mt-4">unibest</view>
|
||
<view class="text-center text-2xl mt-4 mb-8">最好用的 uniapp 开发模板</view>
|
||
<view class="text-center text-xl"
|
||
>unibest 是由 uniapp + Vue3 + Ts + Vite4 + UnoCss + UniUI 驱动的跨端快速启动模板,使用 VS Code
|
||
开发,具有代码提示、自动格式化、统一配置、代码片段等功能,同时内置了大量平时开发常用的基本组件,开箱即用,让你编写
|
||
uniapp 拥有 best 体验。</view
|
||
>
|
||
</view>
|
||
</template>
|
||
|
||
<script lang="ts" setup></script>
|
||
|
||
<style>
|
||
.main-title-color {
|
||
color: #d14328;
|
||
}
|
||
</style>
|