mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-30 18:43:17 +00:00
20 lines
430 B
JavaScript
20 lines
430 B
JavaScript
|
import { createRouter, createWebHistory } from 'vue-router'
|
||
|
import Watch from '../components/WatchVideo.vue'
|
||
|
import Trending from '../components/TrendingPage.vue'
|
||
|
|
||
|
const routes = [{
|
||
|
path: '/watch',
|
||
|
name: 'Watch',
|
||
|
component: Watch
|
||
|
}, {
|
||
|
path: '/',
|
||
|
name: 'Trending',
|
||
|
component: Trending
|
||
|
}]
|
||
|
|
||
|
const router = createRouter({
|
||
|
history: createWebHistory(),
|
||
|
routes
|
||
|
})
|
||
|
|
||
|
export default router
|