Loading src/playground/App.vue +1 −0 Original line number Diff line number Diff line Loading @@ -4,6 +4,7 @@ <router-link to="/">Home</router-link> <router-link to="/marker">Marker</router-link> <router-link to="/circle">Circle</router-link> <router-link to="/icon">Icon</router-link> </div> <div class="map-wrapper"> <router-view /> Loading src/playground/index.js +1 −0 Original line number Diff line number Diff line Loading @@ -8,6 +8,7 @@ const routes = [ { path: "/", component: Home }, { path: "/marker", component: () => import("./views/Marker.vue") }, { path: "/circle", component: () => import("./views/Circle.vue") }, { path: "/icon", component: () => import("./views/Icon.vue") }, ]; const router = createRouter({ Loading Loading
src/playground/App.vue +1 −0 Original line number Diff line number Diff line Loading @@ -4,6 +4,7 @@ <router-link to="/">Home</router-link> <router-link to="/marker">Marker</router-link> <router-link to="/circle">Circle</router-link> <router-link to="/icon">Icon</router-link> </div> <div class="map-wrapper"> <router-view /> Loading
src/playground/index.js +1 −0 Original line number Diff line number Diff line Loading @@ -8,6 +8,7 @@ const routes = [ { path: "/", component: Home }, { path: "/marker", component: () => import("./views/Marker.vue") }, { path: "/circle", component: () => import("./views/Circle.vue") }, { path: "/icon", component: () => import("./views/Icon.vue") }, ]; const router = createRouter({ Loading