ElCustom.vue 235 B

123456789101112131415
  1. <script lang="ts">
  2. export default {
  3. inheritAttrs: false
  4. }
  5. </script>
  6. <script setup lang="ts">
  7. interface Props {}
  8. const props = defineProps<Props>()
  9. </script>
  10. <template>
  11. <slot></slot>
  12. </template>
  13. <style lang="scss" scoped></style>