Guest User

Untitled

a guest
Nov 17th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <!-- Vue -->
  2. <script src="https://unpkg.com/vue"></script>
  3. <script src="js/vue-script.js"></script> // custom Vue app code here
  4.  
  5. <!-- main stylesheet link -->
  6. <link rel="stylesheet" href="css/style.css" />
  7.  
  8. // Vue app in index.html -------------------
  9. <div id="app">
  10. ...all my elements...
  11. </div>
  12.  
  13. // Vue app in js -------------------
  14. window.onload = function () {
  15. Vue.use(VueSmoothScroll);
  16. var app = new Vue({
  17. el: '#app',
  18. data: {
  19. projects: [
  20. {...some array 1...},
  21. {...some array 2...}
  22. ]
  23. }
  24. })
  25. }
Add Comment
Please, Sign In to add comment