mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
32 lines
548 B
TypeScript
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
|