import React from 'react'; import { Tabs, message } from 'antd'; import { history } from 'umi'; import { MobileOutlined, ConsoleSqlOutlined, GithubOutlined, CodeOutlined, } from '@ant-design/icons'; import styles from './index.less'; const { TabPane } = Tabs; const Home = () => { const handleGo = (type: string) => { if (type === 'H5') { history.push('/editor?tid=123456'); } else if (type === 'PC') { message.error('该功能暂未开放, 敬请关注...'); } else { history.push('/ide'); } }; return (
我的H5 } key="1" > 正在开发... 我的大屏 } key="2" > 正在开发...
H5-Dooring 可视化编辑器

H5-Dooring是一款功能强大,开源免费的H5可视化页面配置解决方案, 致力于提供一套简单方便、专业可靠、无限可能的H5落地页最佳实践。 技术栈以react为主, 后台采用nodejs开发。

handleGo('H5')}>
制作H5页面
handleGo('online')}>
在线编程
handleGo('PC')}>
制作可视化大屏
); }; export default Home;