Skip to content
Permalink
a4379df259
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
38 lines (25 sloc) 417 Bytes
<template>
<div class="about">
<h1>This is the profile page</h1>
<div>
{{ $store.state.user }}
</div>
</div>
</template>
<script>
// @ is an alias to /src
export default {
name: 'profile',
data: function(){
return {
}
},
methods: {
},
// This runs when the page loads
mounted() {
// console.log(db);
console.log(this.$store.state.user)
}
};
</script>