摘要: <div id="app6"> <div v-for="item in list">{{ item }}</div> </div> <script> const app6=new Vue({ el:'#app6', data:{ list:["1","2","3","4","5"] } }) </s 阅读全文
posted @ 2023-10-15 16:40 子过杨梅 阅读(1) 评论(0) 推荐(0) 编辑
摘要: <div id="app5"> <button @click="exchange(-5)">点我减五</button> <button @click="exchange(5)">点我加五</button> </div> <script> const app5=new Vue({ el:'#app5' 阅读全文
posted @ 2023-10-15 16:39 子过杨梅 阅读(2) 评论(0) 推荐(0) 编辑