Commit 8b016304 authored by Culdred's avatar Culdred
Browse files

docs: add routing for Icon component

parent caa31c5f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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 />
+1 −0
Original line number Diff line number Diff line
@@ -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({