17 lines
178 B
Vue
17 lines
178 B
Vue
<template>
|
|
<div class="not-found">
|
|
404 Not Found
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'NotFound',
|
|
components: {}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|