basic.vue 415 B

123456789101112
  1. <script setup lang="ts">
  2. import { Welcome } from 'ant-design-x-vue';
  3. defineOptions({ name: 'AXWelcomeBasicSetup' });
  4. </script>
  5. <template>
  6. <Welcome
  7. icon="https://mdn.alipayobjects.com/huamei_iwk9zp/afts/img/A*s5sNRo5LjfQAAAAAAAAAAAAADgCCAQ/fmt.webp"
  8. title="Hello, I'm Ant Design X"
  9. description="Base on Ant Design, AGI product interface solution, create a better intelligent vision~"
  10. />
  11. </template>