Child2.vue 196 B

123456789101112
  1. <template>
  2. <div>
  3. <h1 class="h-26 text-6xl">子组件2</h1>
  4. </div>
  5. </template>
  6. <script lang="ts" setup>
  7. import { ref, reactive } from "vue";
  8. </script>
  9. <style lang="scss" scoped>
  10. </style>