32 lines
479 B
Vue
32 lines
479 B
Vue
|
|
<template>
|
||
|
|
<div>
|
||
|
|
<h1>Signup succeeded</h1>
|
||
|
|
<button @click='logOut'>Log out</button>
|
||
|
|
<hr>
|
||
|
|
<img :src="photo" style='height: 120px'>
|
||
|
|
<br>
|
||
|
|
<p>{{name}}</p>
|
||
|
|
<p>{{email}}</p>
|
||
|
|
<p>{{userId}}</p>
|
||
|
|
<hr>
|
||
|
|
<pre>{{user}}</pre>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data () {
|
||
|
|
return {
|
||
|
|
photo: '',
|
||
|
|
userId: '',
|
||
|
|
name: '',
|
||
|
|
email: '',
|
||
|
|
user: {}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
created () {
|
||
|
|
|
||
|
|
},
|
||
|
|
}
|
||
|
|
</script>
|