Guest User

Untitled

a guest
Nov 20th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <template>
  2. <v-button v-on="$listeners">
  3. <slot/>
  4. </v-button>
  5. </template>
  6.  
  7. <script>
  8. // Abstract
  9. import Button from './Button.bare'
  10.  
  11. // Implementation
  12. export default {
  13. components: {
  14. vButton: Button
  15. },
  16. props: {
  17. ...Button.$props
  18. }
  19. }
  20. </script>
  21.  
  22. <style lang="scss" scoped>
  23. @import './Button';
  24. </style>
Add Comment
Please, Sign In to add comment