add cover to profile & logout on dashbord

This commit is contained in:
2020-04-19 10:57:43 +02:00
parent a12af09102
commit c71f3ca4d8
13 changed files with 156 additions and 45 deletions

View File

@@ -1,7 +1,8 @@
import Vue from 'vue'
import VueRouter from 'vue-router'
import Home from "./views/Home"
import Profil from "./views/User/UserProfile";
import Profile from "./views/User/ProfileUser";
import ShowUser from "./views/User/ShowUser";
import DashBoard from "./views/DashBoard";
import CssTesteur from "./views/CssTesteur";
import MemoIndex from "./views/Memo/MemoIndex";
@@ -22,8 +23,12 @@ export default new VueRouter({
meta: { title: 'Home'}
},
{
path: '/profil', name: 'profil', component: Profil,
meta: { title: 'Profil'}
path: '/profile', name: 'profile', component: Profile,
meta: { title: 'Profile'}
},
{
path: '/users/:id', name: 'user', component: ShowUser,
meta: { title: 'User'}
},
{
path: '/dashboard', name: 'dashboard', component: DashBoard,