ant-design-vue-nuxt icon indicating copy to clipboard operation
ant-design-vue-nuxt copied to clipboard

Hover submenu in menu not working

Open ariz-arizona opened this issue 11 months ago • 1 comments

const menuItems = [
  { key: 1, label: 'test' },
  { key: 2, label: 'test submenu', children: [{ key: 3, label: 'option' }] },
]
</script>

<template>
  <a-extract-style>
    <a-config-provider :theme="theme">
      <div class="container">
        <a-menu :items="menuItems" mode="horizontal" />
...

ariz-arizona avatar Mar 02 '24 11:03 ariz-arizona