1234567891011121314151617181920212223 |
- <template>
- <div class="home">
- <TimeCommon :info="info" :isLargeDesc="true"/>
- </div>
- </template>
- <script setup>
- const props = defineProps({
- info: Object
- })
- </script>
- <style lang="scss" scoped>
- .home{
- >img{
- height: 100%;
- }
- }
- </style>
|