2024-01-04 09:53:17 +08:00
|
|
|
|
<!-- 使用 type="home" 属性设置首页,其他页面不需要设置,默认为page;推荐使用json5,更强大,且允许注释 -->
|
|
|
|
|
<route lang="json5" type="home">
|
|
|
|
|
{
|
2024-01-09 08:27:40 +08:00
|
|
|
|
style: { navigationBarTitleText: '首页' },
|
2024-01-04 09:53:17 +08:00
|
|
|
|
}
|
|
|
|
|
</route>
|
2023-12-21 15:52:49 +08:00
|
|
|
|
<template>
|
2024-01-15 17:36:11 +08:00
|
|
|
|
<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>
|
2024-01-15 17:36:11 +08:00
|
|
|
|
<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>
|
|
|
|
|
|
2024-01-15 17:36:11 +08:00
|
|
|
|
<script lang="ts" setup></script>
|