更新文档

This commit is contained in:
就眠仪式
2021-10-01 18:20:41 +08:00
parent f574c2aac0
commit 899604b2d0
18 changed files with 159 additions and 46 deletions

View File

@@ -12,10 +12,14 @@
</template>
<script setup name="LayCollapseItem" lang="ts">
import { defineProps } from 'vue'
import { defineProps, inject } from 'vue'
const props =
defineProps<{
key?: string
title?: string
}>()
const openKeys = inject('openKeys');
</script>