404.vue 651 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <p class="page-container">404 page not found</p>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. }
  9. },
  10. methods: {
  11. },
  12. mounted() {
  13. },
  14. create() {
  15. },
  16. activated() {
  17. },
  18. computed: {
  19. },
  20. watch: {
  21. '$route'(to, from) {
  22. console.log(from.path)
  23. console.log(to.path)
  24. }
  25. }
  26. }
  27. </script>
  28. <style lang="less" scoped>
  29. .page-container {
  30. font-size: 20px;
  31. text-align: center;
  32. color: rgb(192, 204, 218);
  33. }
  34. </style>