settings.vue 383 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view class="app-page flex flex-col">
  3. <view class="content"><!-- 内容区域 --></view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. loading: 'loading',
  11. result: null
  12. };
  13. },
  14. created() {
  15. this.fnGetData();
  16. },
  17. methods: {
  18. fnGetData() {
  19. // todo:
  20. }
  21. }
  22. };
  23. </script>
  24. <style scoped lang="scss">
  25. .app-page {
  26. width: 100vw;
  27. }
  28. </style>