mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-13 20:57:24 +01:00
35 lines
617 B
Vue
35 lines
617 B
Vue
<template>
|
|
<div>
|
|
<h2>@{{ auth.local.username }} / {{ profile.name }}</h2>
|
|
{{ userId }}
|
|
<router-link :to="{'name': 'userProfile', 'params': {'userId': userId}}">
|
|
profile link
|
|
</router-link>
|
|
<br>
|
|
language: {{ preferences.language }}
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
userId: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
auth: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
preferences: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
profile: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
};
|
|
</script>
|