Matt Rider b8465c914c Update failing test, fix linting
- 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
2019-05-08 21:20:58 -03:00

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>