更新文档

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

@@ -5,5 +5,13 @@
</template>
<script setup name="LayCollapse" lang="ts">
import { provide } from "vue";
const props =
defineProps<{
openKeys?:Array<string>
}>()
provide('openKeys',props.openKeys);
</script>