VUE3(五)列表渲染

遍历数字

        <h2>遍历数字</h2>
        <ul>
            <li v-for="num in 10">{{num}}</li>
        </ul>

发表评论