mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
17 lines
292 B
Vue
17 lines
292 B
Vue
<template>
|
|
<ds-card :header="$t('settings.security.name')">
|
|
<change-password/>
|
|
</ds-card>
|
|
</template>
|
|
|
|
<script>
|
|
import HcEmpty from '~/components/Empty.vue'
|
|
import ChangePassword from '~/components/Password/Change'
|
|
|
|
export default {
|
|
components: {
|
|
ChangePassword
|
|
}
|
|
}
|
|
</script>
|