sanmiaoshendan.vue 255 B

1234567891011121314151617181920212223
  1. <template>
  2. <div class="home">
  3. <TimeCommon :info="info" :isLargeDesc="true"/>
  4. </div>
  5. </template>
  6. <script setup>
  7. const props = defineProps({
  8. info: Object
  9. })
  10. </script>
  11. <style lang="scss" scoped>
  12. .home{
  13. >img{
  14. height: 100%;
  15. }
  16. }
  17. </style>