liveh5-nuxt/app/pages/profile/index.vue

14 lines
259 B
Vue
Raw Normal View History

2025-01-08 05:26:12 +00:00
<script setup lang="ts">
definePageMeta({
layout: 'default',
title: '我的',
i18n: 'menu.profile',
})
</script>
<template>
<div mx-auto mb-60 pt-15 text-center text-16 text-dark dark:text-white>
{{ $t('profile_page.txt') }}
</div>
</template>