123456789101112131415161718192021 |
- <script setup lang="tsx">
- import { Welcome } from 'ant-design-x-vue';
- defineOptions({ name: 'AXWelcomeBasic' });
- const Demo = () => {
- return (
- <Welcome
- icon="https://mdn.alipayobjects.com/huamei_iwk9zp/afts/img/A*s5sNRo5LjfQAAAAAAAAAAAAADgCCAQ/fmt.webp"
- title="Hello, I'm Ant Design X"
- description="Base on Ant Design, AGI product interface solution, create a better intelligent vision~"
- />
- );
- };
- defineRender(() => {
- return (
- <Demo />
- )
- })
- </script>
|