demo5.vue 492 B

12345678910111213141516
  1. <template>
  2. <m-dropdown title="下拉菜单">
  3. <template #img>
  4. <img src="/head.png" alt="" />
  5. </template>
  6. <template #dropdown>
  7. <m-dropdown-menu>
  8. <m-dropdown-item>菜单1</m-dropdown-item>
  9. <m-dropdown-item>菜单2</m-dropdown-item>
  10. <m-dropdown-item>菜单3</m-dropdown-item>
  11. <m-dropdown-item>菜单4</m-dropdown-item>
  12. <m-dropdown-item>菜单5</m-dropdown-item>
  13. </m-dropdown-menu>
  14. </template>
  15. </m-dropdown>
  16. </template>