简体   繁体   中英

NextJs Tooltip with @tippyjs/react

<Link href="/company/add" >
  <a title="My New Title" data-toggle='tooltip' className="btn btn-primary">My Link</a>
</Link>

A typical Nextjs Link about works while and adding Tippy Component looks as simple as show below but this dosent work.

<Tippy content="My Tooltip">
  <Link href="/company/add" >
    <a title="My New Title" data-toggle='tooltip' className="btn btn-primary">My Link</a>
  </Link>
</Tippy>

If anyone has done this successfully I will appreciate your help. I don't if there is about other tooltip that works easily with NextJs

This works:

<Tippy content="hi">
    <div>
       <Link href="/">
          <a>
            Home Page
          </a>
       </Link>
    </div>
</Tippy>

Even MaterialUIs Tooltip works the same way.

Try this it's working for me.

<Link href="/company/add" >
<Tippy content="My Tooltip">
 <a title="My New Title" data-toggle='tooltip' className="btn btn-primary">My Link</a>
</Tippy>
</Link>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM