unibest/src/pages/index/index.vue
2024-01-20 19:19:46 +08:00

28 lines
1.1 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: { navigationBarTitleText: '首页' },
}
</route>
<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" />
<view class="text-2xl text-center mt-4 font-bold"> vue3-uniapp-template </view>
</view>
<view class="mt-8">
<view class="text-center mt-4 font-bold">开箱即用的 uniapp+vue3+ts 模板</view>
<!--
<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" />
-->
</view>
</view>
</template>
<script lang="ts" setup></script>