basic.vue 201 B

1234567891011
  1. <script setup lang="tsx">
  2. import { Bubble } from 'ant-design-x-vue';
  3. defineOptions({ name: 'AXBubbleBasic' });
  4. defineRender(() => {
  5. return (
  6. <Bubble content="hello world !" />
  7. )
  8. })
  9. </script>