mirror of
https://github.com/xiangshu233/vue3-vant4-mobile.git
synced 2025-04-06 03:57:47 +08:00
13 lines
215 B
Vue
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>
|