24 lines
401 B
Vue
24 lines
401 B
Vue
<script lang="ts">
|
|
export default {
|
|
name: "LayDropdownItem",
|
|
};
|
|
</script>
|
|
|
|
<script setup lang="ts">
|
|
import { inject, Ref } from "vue";
|
|
|
|
const openState: Ref<boolean> = inject("openState") as Ref<boolean>;
|
|
|
|
const click = function () {
|
|
openState.value = false;
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<li>
|
|
<div class="layui-menu-body-title" @click="click">
|
|
<slot></slot>
|
|
</div>
|
|
</li>
|
|
</template>
|