mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-20 10:16:39 +08:00
18 lines
225 B
Vue
18 lines
225 B
Vue
<template>
|
|
<div>{{ title }}</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { defineComponent } from "vue"
|
|
|
|
export default defineComponent({
|
|
name: 'NotFound',
|
|
data () {
|
|
return {
|
|
title: "404 Page",
|
|
|
|
}
|
|
},
|
|
})
|
|
</script>
|