NotFoundPage.vue (305B)
1 <template> 2 <div class="not-found-page"> 3 <h1>Page Not Found</h1> 4 <p><router-link to="/home">Return home</router-link></p> 5 </div> 6 </template> 7 8 <style scoped> 9 .not-found-page { 10 text-align: center; 11 } 12 .not-found-page h1 { 13 font-size: 1.5em; 14 } 15 .not-found-page p { 16 margin-top: 0.5em; 17 } 18 </style>