index.vue 502 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="app-container">
  3. <div class="container" style="margin-top: 20px;">
  4. <div v-show="loading" class="well loading">正在加载中,请耐心等待...</div>
  5. <div v-show="!loading" class="well" ref="output"></div>
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. import { getExtend, readBuffer, render } from '@/utils/util';
  11. import { parse } from 'qs';
  12. export default {
  13. data() {
  14. return {
  15. loading: false,
  16. }
  17. }
  18. }
  19. </script>
  20. <style>
  21. </style>