Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 193 Bytes

File metadata and controls

11 lines (8 loc) · 193 Bytes

路由懒加载,用到时再加载

my-vue-router/src/router/index.js

const Home = () => import("../views/Home.vue");

const routes = [
    { path: "/home", component: Home },
];