old client structure

This commit is contained in:
Matteo Pagliazzi
2019-10-01 11:44:38 +02:00
parent 5b61f65711
commit b44fbdcb14
906 changed files with 44 additions and 44 deletions
@@ -0,0 +1,24 @@
<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>