diff options
author | HampusM <hampus@hampusmat.com> | 2021-07-06 13:07:07 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-07-06 13:07:07 +0200 |
commit | 39c38c737114dc7f946b1895b2a4ba27a5546c60 (patch) | |
tree | 61344a90155845d08c4811da16e6f90504da2625 /packages/client/src/views/PageNotFound.vue | |
parent | 4102adab527ccc4f6d8ac210118dea21177c212d (diff) |
Migrated frontend to typescript
Diffstat (limited to 'packages/client/src/views/PageNotFound.vue')
-rw-r--r-- | packages/client/src/views/PageNotFound.vue | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/client/src/views/PageNotFound.vue b/packages/client/src/views/PageNotFound.vue index d2b6fbb..f373f42 100644 --- a/packages/client/src/views/PageNotFound.vue +++ b/packages/client/src/views/PageNotFound.vue @@ -3,7 +3,9 @@ </template> <script> -export default { +import { defineComponent } from "vue"; + +export default defineComponent({ name: "PageNotFound" -}; +}); </script> |