Skip to content
Snippets Groups Projects
Select Git revision
  • dd009bb26becbce875f46eacd9eec2c38af59151
  • master default
2 results

17_ko.html

Blame
  • paths.js 714 B
    /**
     * Define all of your application routes here
     * for more information on routes, see the
     * official documentation https://router.vuejs.org/en/
     */
    export default [
      {
        path: '',
        // Relative to /src/views
        name: 'Home',
        view: 'Dashboard'
      },
      {
        path: '/finderboard',
        name: 'FinderBoard',
        view: 'FinderBoard'
      },
      {
        path: '/losterboard',
        name: 'LosterBoard',
        view: 'LosterBoard'
      },
      {
        path: '/mypage',
        view: 'MyPage'
      },
      {
        path: '/icons',
        view: 'Icons'
      },
      {
        path: '/maps',
        view: 'Maps'
      },
      {
        path: '/notifications',
        view: 'Notifications'
      },
      {
        path: '/upgrade',
        name: 'Upgrade to PRO',
        view: 'Upgrade'
      }
    ]