Advertisement
Guest User

Untitled

a guest
Jun 30th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. Vue.component('element-one', {
  2. template: '<h1>Element ONE</h1>',
  3. }
  4.  
  5. Vue.component('element-two', {
  6. template: '<h1>Element TWO</h1>',
  7. }
  8.  
  9. var element = Vue.component('element-one');
  10. new element().$mount().$appendTo('body');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement