布局框架搭建

This commit is contained in:
2026-01-16 11:19:54 +08:00
parent f33bf735d9
commit 08f97d1a21
10 changed files with 1573 additions and 70 deletions

View File

@@ -0,0 +1,9 @@
<template>
<a-drawer v-model:open="open" title="布局配置"></a-drawer>
</template>
<script setup>
import { ref } from 'vue';
const open = ref(false)
</script>