HttpSetter.vue 597 B

123456789101112131415161718192021222324252627282930313233
  1. <!--
  2. * @Author: liuJie
  3. * @Date: 2026-01-25 22:08:04
  4. * @LastEditors: liuJie
  5. * @LastEditTime: 2026-01-25 22:24:34
  6. * @Describe: http设置器
  7. -->
  8. <script lang="ts" setup>
  9. import { ElDrawer, ElButton } from 'element-plus';
  10. import { Icon } from '@iconify/vue';
  11. const props = withDefaults(
  12. defineProps<{
  13. data: any,
  14. visible: boolean,
  15. }>(),
  16. {
  17. visible: false,
  18. data: {}
  19. }
  20. );
  21. const emit = defineEmits<{
  22. 'update:visible': [value: boolean]
  23. }>()
  24. </script>
  25. <template>
  26. <div class='content'>
  27. </div>
  28. </template>
  29. <style lang="scss" scoped></style>