Format all code files using the new configuration

This commit is contained in:
Maurice Oegerli
2021-04-07 13:45:40 +02:00
parent bbea6116af
commit 8eed88f17f
14 changed files with 323 additions and 525 deletions

View File

@@ -1,34 +1,41 @@
import { createRouter, createWebHistory } from 'vue-router'
import { createRouter, createWebHistory } from "vue-router";
const routes = [{
path: '/watch',
name: 'Watch',
component: () => import('../components/WatchVideo.vue')
}, {
path: '/',
name: 'Trending',
component: () => import('../components/TrendingPage.vue')
}, {
path: '/channel/:channelId',
name: 'Channel',
component: () => import('../components/Channel.vue')
}, {
path: '/preferences',
name: 'Preferences',
component: () => import('../components/Preferences.vue')
}, {
path: '/results',
name: 'SearchResults',
component: () => import('../components/SearchResults.vue')
}, {
path: '/playlist',
name: 'Playlist',
component: () => import('../components/Playlist.vue')
}]
const routes = [
{
path: "/watch",
name: "Watch",
component: () => import("../components/WatchVideo.vue"),
},
{
path: "/",
name: "Trending",
component: () => import("../components/TrendingPage.vue"),
},
{
path: "/channel/:channelId",
name: "Channel",
component: () => import("../components/Channel.vue"),
},
{
path: "/preferences",
name: "Preferences",
component: () => import("../components/Preferences.vue"),
},
{
path: "/results",
name: "SearchResults",
component: () => import("../components/SearchResults.vue"),
},
{
path: "/playlist",
name: "Playlist",
component: () => import("../components/Playlist.vue"),
},
];
const router = createRouter({
history: createWebHistory(),
routes
})
routes,
});
export default router
export default router;