This commit is contained in:
2025-12-13 18:44:28 +08:00
parent a9b2c729e3
commit 5667bab5c9
11 changed files with 314 additions and 24 deletions

View File

@@ -0,0 +1,39 @@
<template>
<div>
<!-- 统一Admin下的基本样式 -->
<div>
<!-- 头部 -->
<div>
<!-- 左侧信息 -->
<span>
<!-- title -->
</span>
<span>
<!-- info -->
</span>
</div>
<div>
<!-- 右侧按钮 或者文本-->
<slot name="action">
</slot>
</div>
</div>
<div>
<!-- div控制margin等基本样式 -->
<slot>
</slot>
</div>
</div>
</template>
<script setup lang="ts">
import { ElButton } from 'element-plus';
import { ref } from 'vue';
defineEmits("clickButton")
</script>
<style lang="scss" scoped>
</style>