51 lines
1.1 KiB
JavaScript
51 lines
1.1 KiB
JavaScript
import { createRouter, createWebHistory } from 'vue-router'
|
|
import Home from '../views/Home.vue'
|
|
import SSQ from '../views/SSQ.vue'
|
|
import DLT from '../views/DLT.vue'
|
|
import Statistics from '../views/Statistics.vue'
|
|
import AdvancedAnalysis from '../views/AdvancedAnalysis.vue'
|
|
import Prediction from '../views/Prediction.vue'
|
|
import NumberGenerator from '../views/NumberGenerator.vue'
|
|
|
|
const router = createRouter({
|
|
history: createWebHistory(),
|
|
routes: [
|
|
{
|
|
path: '/',
|
|
name: 'Home',
|
|
component: Home
|
|
},
|
|
{
|
|
path: '/ssq',
|
|
name: 'SSQ',
|
|
component: SSQ
|
|
},
|
|
{
|
|
path: '/dlt',
|
|
name: 'DLT',
|
|
component: DLT
|
|
},
|
|
{
|
|
path: '/statistics',
|
|
name: 'Statistics',
|
|
component: Statistics
|
|
},
|
|
{
|
|
path: '/advanced-analysis',
|
|
name: 'AdvancedAnalysis',
|
|
component: AdvancedAnalysis
|
|
},
|
|
{
|
|
path: '/prediction',
|
|
name: 'Prediction',
|
|
component: Prediction
|
|
},
|
|
{
|
|
path: '/number-generator',
|
|
name: 'NumberGenerator',
|
|
component: NumberGenerator
|
|
}
|
|
]
|
|
})
|
|
|
|
export default router
|