NotFound.vue 402 B

1234567891011121314151617181920212223
  1. <template>
  2. <div class="not-found">
  3. <van-nav-bar title left-text="返回" left-arrow @click-left="$router.go(-1)"></van-nav-bar>
  4. <img src="../assets/img/not.jpeg" alt />
  5. </div>
  6. </template>
  7. <script>
  8. export default {};
  9. </script>
  10. <style lang="less">
  11. .not-found {
  12. .van-nav-bar {
  13. background: #ececec;
  14. }
  15. img {
  16. width: 100%;
  17. }
  18. min-height: 100vh;
  19. background: #ececec;
  20. }
  21. </style>