convert.vue 254 B

12345678910111213141516171819202122
  1. <template>
  2. <view class="center">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {};
  9. },
  10. //页面加载即刻发生
  11. onload() {},
  12. methods: {}
  13. };
  14. </script>
  15. <style lang="scss">
  16. .center {
  17. height: 0;
  18. min-height: 100%;
  19. }
  20. </style>