Vue
※前提条件:本文基于 Vue 2.0 创作
every component must have a single root element (每个组件必须只有一个根元素)。
错误的示例
<h3>{{ title }}</h3> <div v-html="content"></div>
正确的示例
<div class="blog-post"> <h3>{{ title }}</h3> <div v-html="content"></div> </div>
コメント: