mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
cc @appinteractive We're trying to cross-validate two form fields and don't know how. We (ie. @kachulio1, @aonomike, myself) gave up after we discovered https://github.com/Human-Connection/Nitro-Styleguide/issues/46
17 lines
296 B
Vue
17 lines
296 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/ChangePassword.vue'
|
|
|
|
export default {
|
|
components: {
|
|
ChangePassword
|
|
}
|
|
}
|
|
</script>
|