2023-08-25 16:49:16 +08:00

32 lines
548 B
TypeScript

/**
*
* @author Ray <https://github.com/XiaoDaiGua-Ray>
*
* @date 2023-07-14
*
* @workspace ray-template
*
* @remark 今天也是元气满满撸代码的一天
*/
import RayIframe from '@/components/RayIframe/index'
const RTemplateDoc = defineComponent({
name: 'RTemplateDoc',
setup() {
return {}
},
render() {
return (
<RayIframe
width="100%"
height="100%"
src="https://xiaodaigua-ray.github.io/ray-template-doc/"
lazy
></RayIframe>
)
},
})
export default RTemplateDoc