11 lines
125 B
Vue
11 lines
125 B
Vue
|
<template>
|
||
|
<div>
|
||
|
404 Not Found
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "NotFound"
|
||
|
}
|
||
|
</script>
|