mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-03-01 12:44:28 +00:00
21 lines
410 B
Vue
21 lines
410 B
Vue
<template>
|
|
<os-card>
|
|
<h2 class="title">{{ $t('settings.security.name') }}</h2>
|
|
<change-password />
|
|
</os-card>
|
|
</template>
|
|
|
|
<script>
|
|
import { OsCard } from '@ocelot-social/ui'
|
|
import ChangePassword from '~/components/Password/Change'
|
|
import scrollToContent from './scroll-to-content.js'
|
|
|
|
export default {
|
|
mixins: [scrollToContent],
|
|
components: {
|
|
OsCard,
|
|
ChangePassword,
|
|
},
|
|
}
|
|
</script>
|