index.js 284 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 const NotFound = { template: ` <div> Yoho Node.js 持续集成平台 </div> ` } const LogsNode = () => import('../../vue/logs/node.vue') const routes = [ { path: '/logs/node', component: LogsNode }, { path: '*', component: NotFound } ] export default routes