financial-bigscreen/src_old/views/404.vue
2024-11-14 15:27:41 +08:00

18 lines
238 B
Vue

<template>
<div>
<h1>404 - Page Not Found</h1>
<p>The page you are looking for does not exist.</p>
</div>
</template>
<script>
export default {
name: 'NotFound'
};
</script>
<style scoped>
h1 {
color: #ffce2a;
}
</style>