Spookie/assets/js/components/NotFound.vue

12 lines
111 B
Vue
Raw Normal View History

2022-05-03 14:52:04 +02:00
<template>
2022-05-11 14:48:04 +02:00
<div>
404 Not Found
</div>
2022-05-03 14:52:04 +02:00
</template>
<script>
export default {
2022-05-11 14:48:04 +02:00
name: 'NotFound'
2022-05-03 14:52:04 +02:00
}
</script>