| 123456789101112131415161718192021222324 |
- <template>
- <div class="app-container">
- <div class="container" style="margin-top: 20px;">
- <div v-show="loading" class="well loading">正在加载中,请耐心等待...</div>
- <div v-show="!loading" class="well" ref="output"></div>
- </div>
- </div>
- </template>
- <script>
- import { getExtend, readBuffer, render } from '@/utils/util';
- import { parse } from 'qs';
- export default {
- data() {
- return {
- loading: false,
- }
- }
- }
- </script>
- <style>
- </style>
|