Add a search page.

This commit is contained in:
FireMasterK
2020-12-09 19:03:29 +05:30
parent d737a0003d
commit e9d1a77a6a
3 changed files with 199 additions and 115 deletions

View File

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