上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 58 下一页
摘要: <template> <p :style="{color:activeColor,fontSize:fontsize+'px'}"></p> </template> <script> export default { name: "StyleDemo", data(){ return{ active 阅读全文
posted @ 2023-11-07 22:55 会秃头的小白 阅读(7) 评论(0) 推荐(0) 编辑
摘要: <template> <div ref="contain">{{content}}</div> <button @click="getElemet">获取元素</button> <input type="text" ref="username"> </template> <script> expor 阅读全文
posted @ 2023-11-07 22:55 会秃头的小白 阅读(10) 评论(0) 推荐(0) 编辑
摘要: <template> <input type="text" v-model.lazy="message"> <div>{{message}}</div> <input type="checkbox" v-model="flag"> <div>{{flag}}</div> </template> <s 阅读全文
posted @ 2023-11-07 22:53 会秃头的小白 阅读(5) 评论(0) 推荐(0) 编辑
摘要: <template> <h3>事件修饰符</h3> <a @click="clickHandle" href="www.baidu.com">百度</a> <div @click="clickDiv"> <p @click="clickP">测试冒泡</p> </div> </template> < 阅读全文
posted @ 2023-11-07 22:52 会秃头的小白 阅读(5) 评论(0) 推荐(0) 编辑
摘要: <template> <p :class="{'active':isActive}">Class样式绑定</p> <p :class="Objec">Class样式绑定</p> <p :class="[arrActive,arrHasErr]">Class样式绑定3</p> <p :class="i 阅读全文
posted @ 2023-11-07 22:51 会秃头的小白 阅读(4) 评论(0) 推荐(0) 编辑
摘要: <template> <h3>数组</h3> <button @click="addnums">添加数据</button> <p v-for="(item,index) in nums" :key="index">{{item}}</p> </template> <script> export de 阅读全文
posted @ 2023-11-07 22:51 会秃头的小白 阅读(7) 评论(0) 推荐(0) 编辑
摘要: <template> <h3>模板语法</h3> <p>{{msg}}</p> <p>{{number+1}}</p> <p>{{flag? 'yes':'no'}}</p> <p>{{message.split("").reverse().join("")}}</p> <p v-html="raw 阅读全文
posted @ 2023-11-07 22:50 会秃头的小白 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 今天考试 感觉上午题犹豫不确定的有点多 下午题感觉很稳 阅读全文
posted @ 2023-11-06 08:58 会秃头的小白 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 本次实验属于模仿型实验,通过本次实验学生将掌握以下内容: 1、理解桥接模式的动机,掌握该模式的结构; 2、能够利用桥接模式解决实际问题。 [实验任务一]:两个维度的桥接模式 用桥接模式实现在路上开车这个问题,其中,车可以是car或bus,路可以是水泥路或沥青路。 实验要求: 1. 画出对应的类图; 阅读全文
posted @ 2023-11-06 08:56 会秃头的小白 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 实验8:适配器模式 本次实验属于模仿型实验,通过本次实验学生将掌握以下内容: 1、理解适配器模式的动机,掌握该模式的结构; 2、能够利用适配器模式解决实际问题。 [实验任务一]:双向适配器 实现一个双向适配器,使得猫可以学狗叫,狗可以学猫抓老鼠。 实验要求: 1. 画出对应的类图; 2.提交源代码; 阅读全文
posted @ 2023-11-06 08:55 会秃头的小白 阅读(60) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 58 下一页