UNPKG

@hperchec/scorpion-ui-template-default

Version:
71 lines (68 loc) 1.57 kB
/** * @vuepress * --- * title: Router - 'public' routes * headline: Router - 'public' routes * sidebarTitle: .public * sidebarDepth: 0 # To disable auto sidebar links * prev: false # Disable prev link * next: false # Disable prev link * --- */ import ForgotPassword from './ForgotPassword' import Home from './Home' import Login from './Login' import NotFound from './NotFound' import ResetPassword from './ResetPassword' import SignUp from './SignUp' /** * @name public * @static * @type {Object} * @description * > {@link ../../ context}.{@link ../ router}.{@link ./ routes}.{@link # public} */ export default { /** * @alias public.Home * @type {Object} * @see {@link ./Home Home} * @description Home route */ Home, /** * @alias public.Login * @type {Object} * @see {@link ./Login Login} * @description Login route */ Login, /** * @alias public.SignUp * @type {Object} * @see {@link ./SignUp SignUp} * @description SignUp route */ SignUp, /** * @alias public.ForgotPassword * @type {Object} * @see {@link ./ForgotPassword ForgotPassword} * @description ForgotPassword route */ ForgotPassword, /** * @alias public.ResetPassword * @type {Object} * @see {@link ./ResetPassword ResetPassword} * @description ResetPassword route */ ResetPassword, /** * @alias public.NotFound * @type {Object} * @see {@link ./NotFound NotFound} * @description NotFound route */ NotFound }