33 lines
524 B
Vue
33 lines
524 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 lang="ts" >
|
|
import Vue from 'vue'
|
|
export default Vue.extend({
|
|
data () {
|
|
return {
|
|
photo: '',
|
|
userId: '',
|
|
name: '',
|
|
email: '',
|
|
user: {}
|
|
}
|
|
},
|
|
created () {
|
|
|
|
},
|
|
})
|
|
</script>
|