UNPKG

vuejs-highcharts

Version:

Wrapper for Highcharts library for Vue.js 2.x

24 lines (20 loc) 308 B
'use strict' import Home from 'views/Home' import SamplePage from 'views/SamplePage' const routes = [ { name: 'Home', path: '/', component: Home }, { name: 'Sample', path: '/sample', component: SamplePage }, { path: '*', redirect: '/' } ] export default routes