mini chart 完善

This commit is contained in:
chenghx
2018-07-20 17:36:46 +08:00
parent f7dee15838
commit 5ea08d91bb
10 changed files with 260 additions and 87 deletions

View File

@@ -1,7 +1,7 @@
import Vue from 'vue'
import Router from 'vue-router'
import Dashboard from '@/components/dashboard/Dashboard'
import MiniChart from '@/components/chart/MiniChart'
import MiniArea from '@/components/chart/MiniArea'
Vue.use(Router)
@@ -20,7 +20,7 @@ export default new Router({
{
path: '/chart',
name: 'chart',
component: MiniChart
component: MiniArea
}
]
})