error.vue 332 B

123456789101112131415161718192021222324
  1. <template>
  2. <div>
  3. <van-empty image="network" description="请求失败了呢" />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'error',
  9. components: {},
  10. props: [],
  11. data () {
  12. return {
  13. }
  14. },
  15. created () { },
  16. mounted () { },
  17. methods: { },
  18. computed: {}
  19. }
  20. </script>
  21. <style scoped lang='scss'>
  22. </style>