123456789101112131415161718192021222324252627282930313233 |
- <template>
- <view class="dayQuestion">
- <ComQuestion :titleConfig="titleConfig"></ComQuestion>
- </view>
- </template>
- <script>
- import ComQuestion from "../comQuestion/index.vue";
- export default {
- components: {
- ComQuestion
- },
- data() {
- return {
- titleConfig: {
- title: "每日答题",
- subTitle: "太阳每天都是新的",
- }
- };
- },
- methods: {
- },
- }
- </script>
- <style lang="scss">
- page {
- background-color: #f9f9f9;
- height: 100%;
- }
- </style>
|