Advertisement
soden

Untitled

Mar 1st, 2024
587
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.16 KB | Source Code | 0 0
  1. <div id="app">
  2.   {{ message }}
  3. </div>
  4.  
  5. <script>
  6.   var app = new Vue({
  7.     el: '#app',
  8.     data: {
  9.       message: 'Halo, dunia!'
  10.     }
  11.   })
  12. </script>
Tags: JavaScript
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement