unibest/src/pages/index/index.vue
2024-01-29 18:53:57 +08:00

58 lines
1.9 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- 使用 type="home" 属性设置首页其他页面不需要设置默认为page推荐使用json5更强大且允许注释 -->
<route lang="json5" type="home">
{
style: {
// "navigationStyle": "custom",
navigationBarTitleText: '%app.name%',
},
}
</route>
<template>
<view
class="bg-white h-full overflow-hidden pt-2 px-4"
:style="{ marginTop: safeAreaInsets?.top + 'px' }"
>
<view>{{ $t('app.name') }}</view>
<view class="mt-12">
<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-8">unibest</view>
<view class="text-center text-2xl mt-2 mb-8">最好用的 uniapp 开发模板</view>
<view class="text-justify max-w-100 m-auto">
unibest 是由 uniapp + Vue3 + Ts + Vite4 + UnoCss + UniUI 驱动的跨端快速启动模板使用 VS Code
开发具有代码提示自动格式化统一配置代码片段等功能同时内置了大量平时开发常用的基本组件开箱即用让你编写
uniapp 拥有 best 体验</view
>
<view class="text-blue mt-8 text-center"> 详细示例 参考 hello-unibest 项目 </view>
<!-- #ifdef H5 -->
<view class="my-2 text-center">
<a class="my-2 text-center" href="https://github.com/codercup/hello-unibest" target="_blank">
https://github.com/codercup/hello-unibest
</a>
</view>
<!-- #endif -->
<!-- #ifndef H5 -->
<view class="my-2 text-center">https://github.com/codercup/hello-unibest</view>
<!-- #endif -->
</view>
</template>
<script lang="ts" setup>
import { testI18n } from '@/utils/index'
testI18n()
// 获取屏幕边界到安全区域距离
const { safeAreaInsets } = uni.getSystemInfoSync()
const author = ref('菲鸽')
console.log(author)
</script>
<style>
.main-title-color {
/* color: #2c8d39; */
color: #d14328;
}
</style>