vueComponent / ant-design-vue-nuxt

MIT License
61 stars 6 forks source link

Hover submenu in menu not working #45

Open ariz-arizona opened 4 months ago

ariz-arizona commented 4 months ago
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" />
...
LiBaiQiYu commented 4 months ago

use Client-Side Rendering export default defineNuxtConfig({ ssr: false })