index.vue 482 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <view class="dayQuestion">
  3. <ComQuestion :titleConfig="titleConfig"></ComQuestion>
  4. </view>
  5. </template>
  6. <script>
  7. import ComQuestion from "../comQuestion/index.vue";
  8. export default {
  9. components: {
  10. ComQuestion
  11. },
  12. data() {
  13. return {
  14. titleConfig: {
  15. title: "每日答题",
  16. subTitle: "太阳每天都是新的",
  17. }
  18. };
  19. },
  20. methods: {
  21. },
  22. }
  23. </script>
  24. <style lang="scss">
  25. page {
  26. background-color: #f9f9f9;
  27. height: 100%;
  28. }
  29. </style>