智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
LightingSystemApp-serial/.svn/pristine/68/6840545a844983b52148943bb8c...

46 lines
1.0 KiB

3 years ago
import { createRouter<%
if (historyMode) {
%>, createWebHistory<%
} else {
%>, createWebHashHistory<%
}
if (hasTypeScript) {
%>, RouteRecordRaw<%
}
%> } from 'vue-router'
import Home from '../views/Home.vue'
const routes<% if (hasTypeScript) { %>: Array<RouteRecordRaw><% } %> = [
{
path: '/',
name: 'Home',
component: Home
},
{
path: '/about',
name: 'About',
// route level code-splitting
// this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited.
<%_ if (doesCompile) { _%>
component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
<%_ } else { _%>
component: function () {
return import(/* webpackChunkName: "about" */ '../views/About.vue')
}
<%_ } _%>
}
]
const router = createRouter({
<%_ if (historyMode) { _%>
history: createWebHistory(process.env.BASE_URL),
<%_ } else { _%>
history: createWebHashHistory(),
<%_ } _%>
routes
})
export default router