1234567891011121314151617181920212223 |
- <script setup>
- import Container from "../../components/Container/Container.vue";
- </script>
- <template>
- <Container
- :scrollStyle="{
- padding: 0,
- }"
- title="高频考题"
- >
- <img
- class="bg"
- src="https://openwork-oss.oss-cn-shenzhen.aliyuncs.com/uploads/question/2025/06/IZu3eQHkb2JYcMtBKUbUB5BLg504HRgdoT9aminz.png"
- alt=""
- />
- </Container>
- </template>
- <style scoped lang="scss">
- .bg {
- width: 100%;
- height: 1448rpx;
- }
- </style>
|