mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-10-21 01:02:18 +08:00
14 lines
187 B
TypeScript
14 lines
187 B
TypeScript
import { RouterView } from 'vue-router'
|
|
|
|
const Rely = defineComponent({
|
|
name: 'Rely',
|
|
setup() {
|
|
return {}
|
|
},
|
|
render() {
|
|
return <RouterView />
|
|
},
|
|
})
|
|
|
|
export default Rely
|