mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 22:27:26 +01:00
* Implement URL handling for profile modal * Fix issue where paths would break when using back button * move tiers import to index
25 lines
403 B
Vue
25 lines
403 B
Vue
<template lang="pug">
|
|
.container
|
|
.standard-page
|
|
profile(:userId='userId', :startingPage='startingPage')
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '~client/assets/scss/colors.scss';
|
|
|
|
.header {
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import profile from './profile';
|
|
|
|
export default {
|
|
props: ['userId', 'startingPage'],
|
|
components: {
|
|
profile,
|
|
},
|
|
};
|
|
</script>
|