NotFound.vue 214 B

1234567891011121314151617181920212223
  1. <template>
  2. <h1>404</h1>
  3. </template>
  4. <script>
  5. export default {
  6. data: () => {
  7. return {
  8. }
  9. },
  10. methods: {
  11. },
  12. mounted() {
  13. }
  14. };
  15. </script>
  16. <style lang="scss" scoped>
  17. </style>