404.vue 291 B

123456789101112131415161718
  1. <template>
  2. <ErrorPage :src="Page404"></ErrorPage>
  3. </template>
  4. <script>
  5. import Page404 from '@/assets/error/404.svg'
  6. import ErrorPage from './components/ErrorPage.vue'
  7. export default {
  8. components: {
  9. ErrorPage
  10. },
  11. data() {
  12. return {
  13. Page404: Page404
  14. }
  15. }
  16. }
  17. </script>