unibest/src/pages/index/index.vue

21 lines
769 B
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="text-center mt-4 font-bold">欢迎使用 </view> -->
</view>
</view>
</template>
<script lang="ts" setup></script>