aboutsummaryrefslogtreecommitdiff
path: root/packages/client/src/views/PageNotFound.vue
diff options
context:
space:
mode:
Diffstat (limited to 'packages/client/src/views/PageNotFound.vue')
-rw-r--r--packages/client/src/views/PageNotFound.vue6
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>