began work on profile page
This commit is contained in:
33
17th Website/src/components/ProfilePage/profile.vue
Normal file
33
17th Website/src/components/ProfilePage/profile.vue
Normal file
@@ -0,0 +1,33 @@
|
||||
<script>
|
||||
import profileHeader from './profileHeader.vue'
|
||||
|
||||
export default {
|
||||
name: 'ProfilePage',
|
||||
components: {
|
||||
profileHeader
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div id="ProfileWrapper">
|
||||
<profileHeader></profileHeader>
|
||||
test words
|
||||
<div id="profileContentWrapper">
|
||||
<RouterView />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style>
|
||||
#profileContentWrapper {
|
||||
margin-left: 300px;
|
||||
margin-top: 100px;
|
||||
}
|
||||
|
||||
#ProfileWrapper {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user