mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 01:29:21 +00:00
18 lines
343 B
Vue
18 lines
343 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 () {
|
||
|
|
this.$root.$emit('show::modal', 'profile');
|
||
|
|
},
|
||
|
|
};
|
||
|
|
</script>
|