404.vue 184 B

123456789101112131415
  1. <template>
  2. <div class="not-found">
  3. page not exist!
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: "not-found",
  9. data() {
  10. return {};
  11. },
  12. methods: {}
  13. };
  14. </script>