SoilPro.vue 315 B

123456789101112131415161718
  1. <!-- 引入组件的父组件 -->
  2. <template>
  3. <div class="parent-container">
  4. <Introduce :targetId="1" />
  5. </div>
  6. </template>
  7. <script setup lang="ts">
  8. import Introduce from './Introduce.vue';
  9. </script>
  10. <style scoped lang="scss">
  11. .parent-container {
  12. padding: 20px;
  13. background-color: #f0f8ff;
  14. }
  15. </style>