24 lines
475 B
TypeScript
24 lines
475 B
TypeScript
// import { defineComponent } from 'vue'
|
|
//
|
|
// export default defineComponent({
|
|
// setup() {
|
|
// return () => (
|
|
// <div class="404">
|
|
// <h1>404</h1>
|
|
// </div>
|
|
// )
|
|
// }
|
|
// })
|
|
|
|
import { Component, Vue } from 'vue-facing-decorator'
|
|
|
|
@Component()
|
|
export default class About extends Vue {
|
|
render() {
|
|
return (
|
|
<div class="404">
|
|
<h1>404</h1>
|
|
</div>
|
|
)
|
|
}
|
|
} |