123456789101112131415161718192021222324 |
- <template>
- <div>
- <van-empty image="network" description="请求失败了呢" />
- </div>
- </template>
- <script>
- export default {
- name: 'error',
- components: {},
- props: [],
- data () {
- return {
- }
- },
- created () { },
- mounted () { },
- methods: { },
- computed: {}
- }
- </script>
- <style scoped lang='scss'>
- </style>
|