VueJS component not rendering VueJS component not rendering vue.js vue.js

VueJS component not rendering


  • Use the component inside of the specified el mount element
  • Define the component before initializing the Vue instance with new Vue

Vue.component('todo-item', {  template: '<li>This is a list item</li>'})new Vue({  el: '#app',  data: {    message: 'Hello Vue.js!'  }})
<script src="https://unpkg.com/vue"></script><div id="app">  <ol>    <todo-item></todo-item>  </ol>  <p>{{ message }}</p></div><div></div>