mirror of
https://github.com/ZorgCC/psina-avatar-frontend.git
synced 2025-07-20 04:06:26 +03:00
20 lines
260 B
Vue
20 lines
260 B
Vue
<template>
|
|
<div>
|
|
<h2>settings</h2>
|
|
<p>user data from backend: {{ user }}</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'SettingsView',
|
|
props: {
|
|
user: {
|
|
type: [String, Object],
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped></style>
|