highFire.vue 472 B

1234567891011121314151617181920212223
  1. <script setup>
  2. import Container from "../../components/Container/Container.vue";
  3. </script>
  4. <template>
  5. <Container
  6. :scrollStyle="{
  7. padding: 0,
  8. }"
  9. title="高频考题"
  10. >
  11. <img
  12. class="bg"
  13. src="https://openwork-oss.oss-cn-shenzhen.aliyuncs.com/uploads/question/2025/06/IZu3eQHkb2JYcMtBKUbUB5BLg504HRgdoT9aminz.png"
  14. alt=""
  15. />
  16. </Container>
  17. </template>
  18. <style scoped lang="scss">
  19. .bg {
  20. width: 100%;
  21. height: 1448rpx;
  22. }
  23. </style>