page-theme.vue 446 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class="page-theme" :class="'page-theme-'+theme"
  3. :style="isflex?'height:100%;display:flex;flex-direction:column;':''">
  4. <slot></slot>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. props: ['theme','isflex'],
  10. data() {
  11. return {};
  12. },
  13. watch: {},
  14. mounted() {},
  15. onReady() {},
  16. methods: {}
  17. }
  18. </script>
  19. <style scoped lang="scss">
  20. .page-theme {
  21. width: 100%;
  22. min-height: 100%;
  23. overflow-x: hidden;
  24. }
  25. </style>