摘要: Vue指令之v-if和v-show <!DOCTYPE html> <html lang="en"> ​ <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1. 阅读全文
posted @ 2019-11-20 12:02 阿江是个程序猿 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 迭代数组(普通数组、对象数组) <ul> <li v-for="(item, i) in list">索引:{{i}} 姓名:{{item.name}} 年龄:{{item.age}}</li> </ul> 迭代对象中的属性 <!-- 循环遍历对象身上的属性 --> ​ <div v-for="(v 阅读全文
posted @ 2019-11-20 11:57 阿江是个程序猿 阅读(330) 评论(0) 推荐(0) 编辑