I'm using Vuejs. This is my markup:
<body>
  <div id="main">
    <div id="mainActivity" v-component="{{currentActivity}}" class="activity"></div>
  </div>
</body>
This is my code:
var main = new Vue({
    el: '#main',
    data: {
        currentActivity: 'home'
    }
})
;
When I load the page I get this warning:
[Vue warn]: Cannot find element: #main
What am I doing wrong?
 
     
     
     
     
     
     
    