I dont know why there is no Profile link create, I know It is these code in the /component/TheUserMenu.vue
```
{
title: '個人資料',
// caption: '@quasarframework',
icon: 'account_circle',
// to: '/profile',
match: this.$store.state.keys.pub,
},
I dont know why there is no Profile link create, I know It is these code in the /component/TheUserMenu.vue
```
{
title: '個人資料',
// caption: '@quasarframework',
icon: 'account_circle',
// to: '/profile',
match: this.$store.state.keys.pub,
},
looks like I hard coded it before I created a more standard way of matching the path. will fix. search for 'profile' ? '/' + $store.state.keys.pub'
Thanks but seems it is out of my knowledge. I try:
```
match: 'profile' ? '/' + $store.state.keys.pub,
```
but syntax error: 201:46 error Parsing error: Unexpected token, expected ":" (63:46)
----
temporarily I will paste my public key directly instead 😃😃😃
hey! sorry I wasn't clear. search for that text in the TheUserMenu.vue file, replace that line with :to="item.to" and update the item array
{
title: 'profile',
icon: 'account_circle',
to: '/' + this.$store.state.keys.pub,
match: this.$store.state.keys.pub,
},