Profile page

- Created a mock profile page
This commit is contained in:
2020-11-13 18:17:32 +00:00
parent 6945c27ec0
commit a3fbc61162
6 changed files with 323 additions and 118 deletions

View File

@@ -14,7 +14,7 @@ export default function ({ $axios, store }, inject) {
api.onRequest(config => {
config.headers = {
...config.headers,
Authorization: store.state.auth.token
Authorization: `Bearer ${store.state.auth.token}`
}
})