Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. window.Vue = require('vue');
  2.  
  3. Vue.component('example-component', {
  4. template: '<h2>This is your Vue app</h2>'
  5. });
  6.  
  7. new Vue({
  8. el: '#app',
  9. });
  10.  
  11. <h2>Testing Vue.js component below</h2>
  12. <div id="app">
  13. <example-component></example-component>
  14. </div>
  15.  
  16. <script type="text/javascript" src="js/app.js"></script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement