Giter Site home page Giter Site logo

Comments (6)

RobinCK avatar RobinCK commented on May 14, 2024

example works fine https://monosnap.com/file/2tQkh3J0yVEC5JSdayeD8pBO6mBpvS

from vue-popper.

vq0599 avatar vq0599 commented on May 14, 2024

Sorry, Perhaps I have not expressed myself very well.

  1. It's ok.
    Aug-27-2019 15-42-59

  2. The link unable be clicked, because blur event be triggered before click event.
    Aug-27-2019 15-43-08

from vue-popper.

RobinCK avatar RobinCK commented on May 14, 2024

unfortunately, I don’t have time to edit the component itself, but the problem can be solved somehow https://jsfiddle.net/3qsac2up/3/

from vue-popper.

vq0599 avatar vq0599 commented on May 14, 2024

Thanks.
How about adding a new trigger mode 'focus' and removing focus and blur listener on 'hover' mode?
Refer https://ant.design/components/tooltip/
Can I submit a PR?

      switch (this.trigger) {
        case 'click':
          on(this.referenceElm, 'click', this.doToggle);
          on(document, 'click', this.handleDocumentClick);
          break;
        case 'hover':
          on(this.referenceElm, 'mouseover', this.onMouseOver);
          on(this.popper, 'mouseover', this.onMouseOver);
          on(this.referenceElm, 'mouseout', this.onMouseOut);
          on(this.popper, 'mouseout', this.onMouseOut);
          break;
        case 'focus':
          on(this.referenceElm, 'focus', this.onMouseOver);
          on(this.popper, 'focus', this.onMouseOver);
          on(this.referenceElm, 'blur', this.onMouseOut);
          on(this.popper, 'blur', this.onMouseOut);
      }

from vue-popper.

RobinCK avatar RobinCK commented on May 14, 2024

Yes you can do PR

from vue-popper.

ouba421 avatar ouba421 commented on May 14, 2024

Click on the popup and close the popover!
image
image
image

from vue-popper.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.