Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <b-nav-item-dropdown>
  2. <template slot="button-content">
  3. <em>Button</em>
  4. </template>
  5. <b-dropdown-item href="#">
  6. <a href="" :click="foo()">Execute foo</a></b-dropdown-item>
  7. </b-nav-item-dropdown>
  8. <script>
  9. export default {
  10. methods: {
  11. foo() {
  12. console.log("executing methods");
  13. },
  14. }
  15. }
  16. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement