1 <div id="app">
2 {{ message }} <!-- double mustache - {{ }} -->
3 </div>
4
5 <script>
6
7 options = {
8 el:'#app',
9 data: {
10 message: 'First Template'
11 }
12 }
13
14 // retrieve vue instance
15 const vm = new Vue(options); // vm = ViewModel
16
17 // checking what we are getting
18 console.log(vm);
19
20 </script>