You've already forked pages
forked from didirus/AstralRinth
* Initial impl of project pages
* Finalize project styling
* Revert browse page changes
* Fix lint
* Addressed some comments
* 😄
* Run lint
* Addressed issues
* fixed dist
* addressed changes
* Address changes
* I am speed
* Howd you get there
98 lines
2.1 KiB
JavaScript
98 lines
2.1 KiB
JavaScript
import { createRouter, createWebHistory } from 'vue-router'
|
|
import * as Pages from '@/pages'
|
|
import * as Project from '@/pages/project'
|
|
import * as Instance from '@/pages/instance'
|
|
|
|
/**
|
|
* Configures application routing. Add page to pages/index and then add to route table here.
|
|
*/
|
|
export default new createRouter({
|
|
history: createWebHistory(),
|
|
routes: [
|
|
{
|
|
path: '/',
|
|
name: 'Home',
|
|
component: Pages.Index,
|
|
},
|
|
{
|
|
path: '/browse',
|
|
name: 'Browse',
|
|
component: Pages.Browse,
|
|
},
|
|
{
|
|
path: '/library',
|
|
name: 'Library',
|
|
component: Pages.Library,
|
|
},
|
|
{
|
|
path: '/add-instance',
|
|
name: 'Add Instance',
|
|
component: Pages.AddInstance,
|
|
},
|
|
{
|
|
path: '/project',
|
|
name: 'Project',
|
|
component: Pages.Project,
|
|
},
|
|
{
|
|
path: '/settings',
|
|
name: 'Settings',
|
|
component: Pages.Settings,
|
|
},
|
|
{
|
|
path: '/project/:id',
|
|
name: 'Project',
|
|
component: Project.Index,
|
|
props: true,
|
|
children: [
|
|
{
|
|
path: '',
|
|
name: 'Description',
|
|
component: Project.Description,
|
|
},
|
|
{
|
|
path: 'versions',
|
|
name: 'Versions',
|
|
component: Project.Versions,
|
|
},
|
|
{
|
|
path: 'version/:version',
|
|
name: 'Version',
|
|
component: Project.Version,
|
|
props: true,
|
|
},
|
|
{
|
|
path: 'gallery',
|
|
name: 'Gallery',
|
|
component: Project.Gallery,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
path: '/instance/:id',
|
|
name: 'Instance',
|
|
component: Instance.Index,
|
|
props: true,
|
|
children: [
|
|
{
|
|
path: '',
|
|
name: 'Mods',
|
|
component: Instance.Mods,
|
|
},
|
|
{
|
|
path: 'options',
|
|
name: 'Options',
|
|
component: Instance.Options,
|
|
},
|
|
{
|
|
path: 'logs',
|
|
name: 'Logs',
|
|
component: Instance.Logs,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
linkActiveClass: 'router-link-active',
|
|
linkExactActiveClass: 'router-link-exact-active',
|
|
})
|