| 123456789101112131415161718192021222324252627282930313233 |
- <!--
- * @Author: liuJie
- * @Date: 2026-01-25 22:08:04
- * @LastEditors: liuJie
- * @LastEditTime: 2026-01-25 22:24:34
- * @Describe: http设置器
- -->
- <script lang="ts" setup>
- import { ElDrawer, ElButton } from 'element-plus';
- import { Icon } from '@iconify/vue';
- const props = withDefaults(
- defineProps<{
- data: any,
- visible: boolean,
- }>(),
- {
- visible: false,
- data: {}
- }
- );
- const emit = defineEmits<{
- 'update:visible': [value: boolean]
- }>()
- </script>
- <template>
- <div class='content'>
- </div>
- </template>
- <style lang="scss" scoped></style>
|