【Vue.js学习】二、Vue的列表展示

【Vue.js学习】二、Vue的列表展示

一、展示数据列表

  • 遍历数据:使用了Vue的一个语法 :v-for = "别名 in 数组名"
  • 展示数据:{{别名}}
  1. 创建一个movies数组
<script>
    const app = new Vue({
        el: '#app',
        data:{
            message:'你好',
            movies:['星际穿越','大话西游','少年派','盗梦空间']
        }
    })
</script>
  1. 使用了v-for进行遍历
<div id="app">
    <ul>
        <li v-for ="item in movies">{{item}}</li>
    </ul>
</div>
  1. 效果
    在这里插入图片描述

二、Vue是响应式的

  • 可以直接在浏览器中添加数据
    在这里插入图片描述
发布了28 篇原创文章 · 获赞 4 · 访问量 1318

猜你喜欢

转载自blog.csdn.net/weixin_44100826/article/details/103452279