habitica/website/client/components/userMenu/profilePage.vue

18 lines
343 B
Vue
Raw Normal View History

<template lang="pug">
div
// @TODO: profile modal is pulled in on the header. So.. seems a little odd to depend on it that way, but for now let's depend
</template>
<script>
import profile from './profile';
export default {
components: {
profile,
},
mounted () {
this.$root.$emit('show::modal', 'profile');
},
};
</script>