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