增加admin管理帐号和项目的界面--初步实现
This commit is contained in:
Generated
Vendored
+60
@@ -0,0 +1,60 @@
|
||||
import { defineComponent, getCurrentInstance, inject, ref, openBlock, createElementBlock, normalizeClass, unref, createElementVNode, renderSlot, createBlock, withCtx, resolveDynamicComponent, toDisplayString } from 'vue';
|
||||
import { ElIcon } from '../../icon/index.mjs';
|
||||
import { breadcrumbKey } from './constants.mjs';
|
||||
import { breadcrumbItemProps } from './breadcrumb-item.mjs';
|
||||
import _export_sfc from '../../../_virtual/plugin-vue_export-helper.mjs';
|
||||
import { useNamespace } from '../../../hooks/use-namespace/index.mjs';
|
||||
|
||||
const __default__ = defineComponent({
|
||||
name: "ElBreadcrumbItem"
|
||||
});
|
||||
const _sfc_main = /* @__PURE__ */ defineComponent({
|
||||
...__default__,
|
||||
props: breadcrumbItemProps,
|
||||
setup(__props) {
|
||||
const props = __props;
|
||||
const instance = getCurrentInstance();
|
||||
const breadcrumbContext = inject(breadcrumbKey, void 0);
|
||||
const ns = useNamespace("breadcrumb");
|
||||
const router = instance.appContext.config.globalProperties.$router;
|
||||
const link = ref();
|
||||
const onClick = () => {
|
||||
if (!props.to || !router)
|
||||
return;
|
||||
props.replace ? router.replace(props.to) : router.push(props.to);
|
||||
};
|
||||
return (_ctx, _cache) => {
|
||||
var _a, _b;
|
||||
return openBlock(), createElementBlock("span", {
|
||||
class: normalizeClass(unref(ns).e("item"))
|
||||
}, [
|
||||
createElementVNode("span", {
|
||||
ref_key: "link",
|
||||
ref: link,
|
||||
class: normalizeClass([unref(ns).e("inner"), unref(ns).is("link", !!_ctx.to)]),
|
||||
role: "link",
|
||||
onClick
|
||||
}, [
|
||||
renderSlot(_ctx.$slots, "default")
|
||||
], 2),
|
||||
((_a = unref(breadcrumbContext)) == null ? void 0 : _a.separatorIcon) ? (openBlock(), createBlock(unref(ElIcon), {
|
||||
key: 0,
|
||||
class: normalizeClass(unref(ns).e("separator"))
|
||||
}, {
|
||||
default: withCtx(() => [
|
||||
(openBlock(), createBlock(resolveDynamicComponent(unref(breadcrumbContext).separatorIcon)))
|
||||
]),
|
||||
_: 1
|
||||
}, 8, ["class"])) : (openBlock(), createElementBlock("span", {
|
||||
key: 1,
|
||||
class: normalizeClass(unref(ns).e("separator")),
|
||||
role: "presentation"
|
||||
}, toDisplayString((_b = unref(breadcrumbContext)) == null ? void 0 : _b.separator), 3))
|
||||
], 2);
|
||||
};
|
||||
}
|
||||
});
|
||||
var BreadcrumbItem = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "breadcrumb-item.vue"]]);
|
||||
|
||||
export { BreadcrumbItem as default };
|
||||
//# sourceMappingURL=breadcrumb-item2.mjs.map
|
||||
Reference in New Issue
Block a user