mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 14:17:22 +01:00
22 lines
434 B
Vue
22 lines
434 B
Vue
<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 () {
|
|
// @TODO: Do we need this page?
|
|
this.$root.$emit('habitica:show-profile', {
|
|
user: {},
|
|
startingPage: 'profile',
|
|
});
|
|
},
|
|
};
|
|
</script>
|