datavizstocklib
Version:
测试一下呗
108 lines (103 loc) • 2.95 kB
JavaScript
import Vue from 'vue'
import Router from 'vue-router'
import Home from './views/Home.vue'
Vue.use(Router)
export default new Router({
routes: [{
path: '/',
name: 'home',
component: Home
}, {
path: '/helloworld',
name: 'helloworld',
component: () => import('./components/HelloWorld.vue')
}, {
path: '/banlance',
name: 'banlance',
component: () => import('./views/Banlance.vue')
}, {
path: '/banlanceChart',
name: 'banlanceChart',
component: () => import('./views/BanlanceChart.vue')
}, {
path: '/banlanceChartTest',
name: 'banlanceChartTest',
component: () => import('./views/BanlanceChartTest.vue')
}, {
path: '/banlanceChartTestV',
name: 'banlanceChartTestV',
component: () => import('./views/BanlanceChartTestV.vue')
}, {
path: '/banlanceChartTestVG',
name: 'banlanceChartTestVG',
component: () => import('./views/BanlanceChartTestVG.vue')
}, {
path: '/perfit',
name: 'perfit',
component: () => import('./views/Perfit.vue')
}, {
path: '/perfitChart',
name: 'perfitChart',
component: () => import('./views/PerfitChart.vue')
}, {
path: '/perfitChartTest',
name: 'perfitChartTest',
component: () => import('./views/PerfitChartTest.vue')
}, {
path: '/perfitChartTestF',
name: 'perfitChartTestF',
component: () => import('./views/PerfitChartTestF.vue')
}, {
path: '/cash',
name: 'cash',
component: () => import('./views/Cash.vue')
}, {
path: '/cashChart',
name: 'cashChart',
component: () => import('./views/CashChart.vue')
}, {
path: '/cashChartTest',
name: 'cashChartTest',
component: () => import('./views/CashChartTest.vue')
}, {
path: '/cashChartTestH',
name: 'cashChartTestH',
component: () => import('./views/CashChartTestH.vue')
}, {
path: '/bar',
name: 'bar',
component: () => import('./views/Bar.vue')
}, {
path: '/rgbtext',
name: 'rgbtext',
component: () => import('./views/RGBTest.vue')
}, {
path: '/dupontChartTest',
name: 'dupontChartTest',
component: () => import('./views/DupontChartTest.vue')
}, {
path: '/valueperChartTest',
name: 'valueperChartTest',
component: () => import('./views/ValueperChartTest.vue')
}, {
path: '/barchartrace',
name: 'barchartrace',
component: () => import('./views/BarChartRace.vue')
}, {
path: '/barchartracev',
name: 'barchartracev',
component: () => import('./views/BarChartRaceH.vue')
}, {
path: '/barchart3d',
name: 'barchart3d',
component: () => import('./views/BarChart3D.vue')
}, {
path: '/pie',
name: 'pie',
component: () => import('./views/Pie.vue')
}, {
path: '/dynamicbar',
name: 'dynamicbar',
component: () => import('./views/DynamicBar.vue')
}]
})