摘要: <div id="app"> <h3>明细列表</h3> <ul> <li v-for="item in stars"> {{item}} </li> </ul> <h3>学生列表</h3> <ul> <li v-for="item in students"> <h4>学生姓名 : {{item.s 阅读全文
posted @ 2022-01-06 16:00 GGFWI 阅读(36) 评论(0) 推荐(0)
摘要: HTML 1 <button @click="showPane">切换显示内容</button> JS 使用 methods 方法 methods:{ showPane:()=>{ // 写点击后发生的事情 } } 阅读全文
posted @ 2022-01-05 19:58 GGFWI 阅读(191) 评论(0) 推荐(0)
摘要: 方法1. 样式中加入!important,即:width: 100% !important; wxss 代码 1 .login-btn { 2 font-size: 16px; 3 width: 100% !important; 4 } wxml代码示例: <button class="login- 阅读全文
posted @ 2022-01-04 08:48 GGFWI 阅读(238) 评论(0) 推荐(0)