quick chat entfernt, profil seiten hinzugefügt, chatt (contacts) verändert

This commit is contained in:
danielvici123
2025-03-12 14:11:25 +01:00
parent 4411c7def6
commit c7365703df
15 changed files with 199 additions and 44 deletions

View File

@@ -7,10 +7,11 @@ import Home from "../components/Home.vue";
import Login from "../components/Login.vue";
import wip from "../components/wip.vue";
import settings from "../components/settings.vue";
import nottifications from "../components/notifications.vue";
import notifications from "../components/notifications.vue";
import register from "../components/register.vue";
import search from "../components/search.vue";
import post from '../components/posts.vue';
import profile from "../components/profile.vue";
// The routing does not happen automatically
// Each route has to be defined here, or it won't work.
const routes = [
@@ -37,7 +38,7 @@ const routes = [
{
path: "/notifications",
name: "Notifications",
component: nottifications,
component: notifications,
},
{
path: "/register",
@@ -54,6 +55,12 @@ const routes = [
name: 'PostDetail',
component: post,
props: true
},
{
path: '/profile/:username',
name: 'Profile ',
component: profile,
props: true
}
]