vue3-vant4-mobile/src/views/my/ChangePassword.vue
2024-03-26 11:28:23 +08:00

13 lines
215 B
Vue

<template>
<div>
<NavBar />
<p>{{ $t('routes.my.changePassword') }} 页面</p>
</div>
</template>
<script setup lang="ts">
import NavBar from './components/NavBar.vue'
</script>
<style scoped></style>