| 123456789101112131415161718 |
- <template>
- <ErrorPage :src="Page404"></ErrorPage>
- </template>
- <script>
- import Page404 from '@/assets/error/404.svg'
- import ErrorPage from './components/ErrorPage.vue'
- export default {
- components: {
- ErrorPage
- },
- data() {
- return {
- Page404: Page404
- }
- }
- }
- </script>
|