vue-material/src/docs/routes.js

24 lines
342 B
JavaScript
Raw Normal View History

2016-07-22 04:45:15 +00:00
import Home from './pages/Home';
2016-07-21 21:56:06 +00:00
import List from './pages/List';
2016-08-30 15:41:16 +00:00
import Error404 from './pages/Error';
2016-07-21 21:56:06 +00:00
2016-08-30 15:41:16 +00:00
const routes = [
{
path: '',
2016-07-22 04:45:15 +00:00
name: 'home',
component: Home
},
2016-08-30 15:41:16 +00:00
{
path: '/list',
2016-08-09 03:29:20 +00:00
name: 'list',
component: List
2016-08-03 06:32:30 +00:00
},
2016-08-30 15:41:16 +00:00
{
path: '*',
name: 'error',
component: Error404
2016-07-21 21:56:06 +00:00
}
2016-08-30 15:41:16 +00:00
];
2016-07-21 21:56:06 +00:00
export default routes;