@scalar/api-client
Version:
the open source API testing client
28 lines (27 loc) • 627 B
JavaScript
import { defineComponent as t, createBlock as i, openBlock as n, unref as a, withCtx as c, renderSlot as r } from "vue";
import { RouterLink as f } from "vue-router";
import m from "./SideNavLink.vue.js";
const p = /* @__PURE__ */ t({
__name: "SideNavRouterLink",
props: {
icon: {},
to: {},
active: { type: Boolean }
},
setup(e) {
return (o, l) => (n(), i(m, {
is: a(f),
active: !!e.active,
icon: e.icon,
to: e.to
}, {
default: c(() => [
r(o.$slots, "default")
]),
_: 3
}, 8, ["is", "active", "icon", "to"]));
}
});
export {
p as default
};