UNPKG

@hperchec/scorpion-ui-template-default

Version:
38 lines (35 loc) 747 B
/** * @vuepress * --- * title: Router - routes * headline: Router - routes * sidebarTitle: .routes * prev: false # Disable prev link * next: false # Disable prev link * --- */ import privateRoutes from './private' import publicRoutes from './public' /** * @name routes * @static * @type {Object} * @description * > {@link ../ context}.{@link ./ router}.{@link # routes} */ export default { /** * @alias routes.private * @type {Object} * @see {@link ./private private} * @description Private routes */ private: privateRoutes, /** * @alias routes.public * @type {Object} * @see {@link ./public public} * @description Public routes */ public: publicRoutes }