unibest/src/pages/index/index.vue

32 lines
1.3 KiB
Vue
Raw Normal View History

<!-- 使用 type="home" 属性设置首页其他页面不需要设置默认为page推荐使用json5更强大且允许注释 -->
<route lang="json5" type="home">
{
2024-01-09 08:27:40 +08:00
style: { navigationBarTitleText: '首页' },
}
</route>
2023-12-21 15:52:49 +08:00
<template>
<view class="bg-white h-full overflow-hidden pt-24 px-4">
<view class="mt-8">
<image src="/static/logo.png" alt="" class="w-20 h-20 block mx-auto" />
2024-01-22 14:21:17 +08:00
<view class="text-2xl text-center mt-4 font-bold"> UniBest </view>
2023-12-21 15:52:49 +08:00
</view>
<view class="mt-8">
2024-01-22 14:21:17 +08:00
<view class="text-center mt-4 font-bold text-xl">开箱即用的 uniapp+vue3+ts 模板</view>
<view class="text-center mt-4 font-bold"
><text class="text-red"> UniBest </text> <text class="text-blue">uni</text>app拥有
<text class="text-blue"> Best</text> 体验 ^_^</view
>
2024-01-20 19:19:46 +08:00
<!--
<view class="mt-8">果然UniIcons 微信小程序下颜色丢失</view>
<uni-icons type="contact" size="30"></uni-icons>
<uni-icons type="contact" size="30" color="red"></uni-icons>
<view mt-4>UnoCSS Icons就正常以后还是多用UnoCSS Icons </view>
<view class="i-carbon-car" />
<view class="i-carbon-car text-red" />
-->
2023-12-22 15:12:44 +08:00
</view>
2023-12-21 15:52:49 +08:00
</view>
</template>
<script lang="ts" setup></script>