unibest/src/pages/index/index.vue

21 lines
769 B
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" />
<view class="text-2xl text-center mt-4 font-bold"> vue3-uniapp-template </view>
2023-12-21 15:52:49 +08:00
</view>
<view class="mt-8">
<view class="text-center mt-4 font-bold">开箱即用的 uniapp+vue3+ts 模板</view>
<!-- <view class="text-center mt-4 font-bold">欢迎使用 </view> -->
2023-12-22 15:12:44 +08:00
</view>
2023-12-21 15:52:49 +08:00
</view>
</template>
<script lang="ts" setup></script>