2024-08-19 17:52:52 +08:00

21 lines
504 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.

<script setup lang="ts">
import { getRandomIcon } from '@/utils/character';
import { platform } from '@/utils/platform';
const logo = getRandomIcon();
const appTitle = 'uniapp-vue3';
</script>
<template>
<view class="flex flex-col items-center gap-y-2 pt-36">
<image :src="logo" class="h-56 w-56" alt="" mode="widthFix" />
<view class="text-xl font-semibold">
{{ appTitle }}
</view>
<view>当前平台{{ platform }}</view>
</view>
</template>
<style lang="scss">
</style>