Vue.js 仅呈现HTML项目

示例

在这个例子中将渲染五个<li>标签

<ul id="render-sample">
  <li v-for="n in 5">
    Hello Loop
  </li>
</ul>