Advertisement
Guest User

Untitled

a guest
Jul 29th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. import Vue from 'vue/dist/vue.js'
  2. import Buefy from 'buefy'
  3. import 'buefy/lib/buefy.css'
  4. Vue.use(Buefy)
  5.  
  6. var App = new Vue({
  7. el: '#app',
  8. data: {
  9. message : "It's working"
  10. }
  11. })
  12.  
  13. <!DOCTYPE html>
  14. <html lang="en">
  15. <head>
  16. <meta charset="utf-8">
  17. <title>Vue Example</title>
  18. </head>
  19. <body>
  20. <h3 id="app">{{ message }}</h3>
  21. <script src="dist/build.js"></script>
  22.  
  23. <script>
  24.  
  25. </script>
  26. </body>
  27. </html>
  28.  
  29. import Vue from 'vue/dist/vue.js'
  30. import Buefy from 'buefy'
  31. import 'buefy/lib/buefy.css'
  32. Vue.use(Buefy)
  33.  
  34. <!DOCTYPE html>
  35. <html lang="en">
  36. <head>
  37. <meta charset="utf-8">
  38. <title>Vue Example</title>
  39. </head>
  40. <body>
  41. <h3 id="app">{{ message }}</h3>
  42. <script src="dist/build.js"></script>
  43.  
  44. <script>
  45. var App = new Vue({
  46. el: '#app',
  47. data: {
  48. message:"It's not working"
  49. }
  50. })
  51. </script>
  52. </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement