Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. Vue.component('date-picker', {
  2. template: '<input/>',
  3. props: [ 'dateFormat' ],
  4. mounted: function() {
  5. $(this.$el).datepicker({
  6. dateFormat: this.dateFormat
  7. });
  8. },
  9. beforeDestroy: function() { ... }
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement