Vue
Posted 季昂
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue相关的知识,希望对你有一定的参考价值。
条件与循环
<div id="list-rendering" class="demo">
<ol>
<li v-for="todo in todos">
{{ todo.text }}
</li>
</ol>
</div>
.demo {
font-family: sans-serif;
border: 1px solid #eee;
border-radius: 2px;
padding: 20px 30px;
margin-top: 1em;
margin-bottom: 40px;
user-select: none;
overflow-x: auto;
}
const ListRenderingApp = {
data() {
return {
todos: [
{ text: \'Learn javascript\' },
{ text: \'Learn Vue\' },
{ text: \'Build something awesome\' }
]
}
}
}
以上是关于Vue的主要内容,如果未能解决你的问题,请参考以下文章