demo2.vue 722 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <m-badge :value="200" :max="99" class="item">
  3. <m-button size="small">评论</m-button>
  4. </m-badge>
  5. <m-badge :value="200" :max="10" class="item" type="primary">
  6. <m-button size="small">回复</m-button>
  7. </m-badge>
  8. <m-dropdown trigger="click" title="点我查看">
  9. <template #dropdown>
  10. <m-dropdown-menu>
  11. <m-dropdown-item class="clearfix">
  12. 评论
  13. <m-badge :value="200" :max="99" />
  14. </m-dropdown-item>
  15. <m-dropdown-item class="clearfix">
  16. 回复
  17. <m-badge :value="200" :max="10" />
  18. </m-dropdown-item>
  19. </m-dropdown-menu>
  20. </template>
  21. </m-dropdown>
  22. </template>
  23. <style>
  24. .item {
  25. margin-right: 40px;
  26. }
  27. </style>