1👍
✅
Your list is outside of the main div element, so it won’t be part of the component’s template.
Fix is:
<body>
<div id="app">
<span v-if='show'>{{ message }}</span>
<ol>
<li v-for="todo in todos">
{{ todo }}
</li>
</ol>
</div>
</body>
Source:stackexchange.com