Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. import { mixin as clickaway } from 'vue-clickaway'
  2.  
  3. @Template
  4. @Component({
  5. components: {
  6. 'b-popover': bPopover
  7. },
  8. mixins: [clickaway]
  9. })
  10.  
  11. <b-popover target="content-more-button"
  12. v-if="showMoreButton"
  13. :show.sync="showPopover"
  14. v-on-clickaway:mousedown="hidePopover"
  15. placement="bottom"
  16. html="true">
  17. <div class='popover'>{{content}}</div>
  18. </b-popover>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement