14 lines
211 B
JavaScript
14 lines
211 B
JavaScript
import { publicView, dashboardView } from './views'
|
|
|
|
export default [
|
|
{
|
|
path: '/public/:hash',
|
|
component: publicView
|
|
},
|
|
{
|
|
path: '/dashboard',
|
|
alias: '/',
|
|
component: dashboardView
|
|
}
|
|
]
|