mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
17 lines
277 B
Vue
17 lines
277 B
Vue
<template>
|
|
<base-card>
|
|
<h2 class="title">{{ $t('settings.security.name') }}</h2>
|
|
<change-password />
|
|
</base-card>
|
|
</template>
|
|
|
|
<script>
|
|
import ChangePassword from '~/components/Password/Change'
|
|
|
|
export default {
|
|
components: {
|
|
ChangePassword,
|
|
},
|
|
}
|
|
</script>
|