上一页 1 2 3 4 5 6 7 8 9 10 ··· 36 下一页

2023年2月16日

ref(代替id)

摘要: App.vue <template> <div> <Student ref="str"/> <h3 v-text="age" ref="age"></h3> <button @click="show()">点击button,输出年龄</button> </div> </template> <!-- 阅读全文

posted @ 2023-02-16 21:02 爱前端的小魏 阅读(111) 评论(0) 推荐(0) 编辑

Scoped方法(防止样式名称冲突)

摘要: App.vue <template> <div> <Student/> <School></School> </div> </template> <!-- 1.解决标签名称一样,引起样式冲突问题 写法:1.<style scoped></style> <style lang='css'></styl 阅读全文

posted @ 2023-02-16 21:00 爱前端的小魏 阅读(36) 评论(0) 推荐(0) 编辑

2023年2月15日

全局事件

摘要: main.js文件: import Vue from 'vue' import App from './App.vue' Vue.config.productionTip = false //1.全局事件:多个组件调用一个地方(如:X),由这么一个地方在返回各个组件想要的数据 //如何让多个组件调用 阅读全文

posted @ 2023-02-15 23:18 爱前端的小魏 阅读(17) 评论(0) 推荐(0) 编辑

2023年2月14日

sass和less以及stylus的区别

摘要: 一、区别: 需要配置不同:Sass需要Ruby环境;Less需要引入less.js;Stylus需要安装node 使用语法不用:Sass变量使用$ ;Less变量使用@;stylus变量使用 属性名 = ‘值’ 阅读全文

posted @ 2023-02-14 22:34 爱前端的小魏 阅读(32) 评论(0) 推荐(0) 编辑

less的使用(变量,嵌套,伪元素,伪类,媒体查询)

摘要: //变量 //嵌套 //伪类:如:hover, & 代表当前所选择的标签 //伪元素 如:befor &:: 代表当前选择的标签 //媒体查询 //1.声明变量 @width:500px; @background-color:blue; .wsx { width: @width; height: 1 阅读全文

posted @ 2023-02-14 22:02 爱前端的小魏 阅读(402) 评论(0) 推荐(0) 编辑

Katalon当添加的内容过多时,需要向下滚动寻找(scroll to element)

摘要: 阅读全文

posted @ 2023-02-14 09:11 爱前端的小魏 阅读(23) 评论(0) 推荐(0) 编辑

2023年2月8日

重新请求

摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> #result { width: 300px; height: 100px; border: 1px solid 阅读全文

posted @ 2023-02-08 23:51 爱前端的小魏 阅读(18) 评论(0) 推荐(0) 编辑

发送请求后,取消请求

摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> #result { width: 300px; height: 100px; border: 1px solid 阅读全文

posted @ 2023-02-08 23:50 爱前端的小魏 阅读(23) 评论(0) 推荐(0) 编辑

网络异常与网络断开,发送AJAX处理

摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> #result { width: 300px; height: 100px; border: 1px solid 阅读全文

posted @ 2023-02-08 23:50 爱前端的小魏 阅读(12) 评论(0) 推荐(0) 编辑

解决ie接收服务请求后,存储至本地缓存,再次接收时,直接拿取缓存非最新服务器数据,如何解决:加上时间戳进行解决

摘要: <!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> #result { width: 300px; height: 100px; border: 1px solid r 阅读全文

posted @ 2023-02-08 23:48 爱前端的小魏 阅读(21) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 36 下一页

导航