mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
- moved passwordStrength to watch since there was a "unexpected side effect in computed property vue" in lint - found this SO post https://stackoverflow.com/questions/53757107/handling-unexpected-side-effect-in-computed-properties-vuejs
17 lines
293 B
Vue
17 lines
293 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>
|