(component): update

This commit is contained in:
就眠儀式 2022-10-18 09:19:56 +08:00
parent eb51083a27
commit 45a8d62ffb
2 changed files with 8 additions and 18 deletions

View File

@ -44,8 +44,7 @@ const needTooltip = computed(
<template>
<li
class="layui-nav-item"
:class="[selectedKey === id ? 'layui-this' : '']"
:class="['layui-nav-item', { 'layui-this': selectedKey === id }]"
:style="indentHandle({ indent, level, isTree })"
@click="selectHandle()"
>

View File

@ -5,26 +5,22 @@ export default {
</script>
<script setup lang="ts">
import { computed, inject, Ref, useSlots } from "vue";
import { computed, inject, Ref } from "vue";
import LayDropdown from "../dropdown/index.vue";
import { LayIcon } from "@layui/icons-vue";
import useLevel from "../menu/useLevel";
export interface LaySubMenuPopupProps {
export interface SubMenuPopupProps {
id: string;
title?: string;
}
const props = defineProps<LaySubMenuPopupProps>();
const props = defineProps<SubMenuPopupProps>();
const { level } = useLevel();
const isTree: Ref<boolean> = inject("isTree") as Ref<boolean>;
const openKeys: Ref<string[]> = inject("openKeys") as Ref<string[]>;
const theme = inject("menuTheme") as Ref<string>;
const isOpen = computed(() => {
return openKeys.value.includes(props.id);
});
const computedTheme = computed(() => {
return theme.value === "light" ? "-light" : "";
});
@ -42,27 +38,22 @@ const computedPlacement = computed(() => {
<template>
<lay-dropdown
trigger="hover"
class="layui-sub-menu-popup"
:placement="computedPlacement"
:autoFitMinWidth="false"
:updateAtScroll="true"
:contentOffset="3"
updateAtScroll
class="layui-sub-menu-popup"
>
<li :class="['layui-nav-item']">
<li class="layui-nav-item">
<a href="javascript:void(0)" style="justify-content: space-between">
<div>
<!-- 图标 -->
<i v-if="$slots.icon" class="layui-sub-menu-icon">
<slot name="icon"></slot>
</i>
<!-- 标题 -->
<span v-if="$slots.title">
<slot name="title"></slot>
</span>
</div>
<!-- 扩展 -->
<span v-if="$slots.expandIcon" class="layui-nav-more">
<slot name="expandIcon">
<lay-icon :type="computedExpandIcon" />