vue第七大功能:v-for,循环

<!DOCTYPE html>
<div id="list-rendering">
    <ol>
        <li v-for="todo in todos">
            {{ todo.text }}
        </li>
    </ol>
</div>
</html>

<script src="https://unpkg.com/vue@next"></script>
<script>
const ListRendering = {
    data() {
        return {
            todos:[
                { text: 'Learn JavaScript' },
                { text: 'Learn Vue' },
                { text: 'Build something awesome' }
            ]
            //message:'You loaded this page on'
            //文本插值的时候,这里是counter:0
        }
    }
}

Vue.createApp(ListRendering).mount('#list-rendering');
</script>

todo in todos

不是很懂todo.text

ol是1、2、3序号
li是原点

上一篇:Vue


下一篇:ML之XGBoost:XGBoost案例应用实战(原生接口实现+Scikit-learn接口实现)