上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 133 下一页
摘要: 我mac用的markdown editor没有在线转化word的功能。复制粘贴到word效果有不大好。 实测好用 免费:https://www.easeconvert.com/markdown-to-word/ 该网站也有其他类型的一些相关转换! 阅读全文
posted @ 2023-04-07 15:16 盘思动 阅读(394) 评论(0) 推荐(0)
摘要: ![](https://img2023.cnblogs.com/blog/1202393/202304/1202393-20230406110246333-1586115997.png) 阅读全文
posted @ 2023-04-06 11:02 盘思动 阅读(28) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>test addEventListener</title> </head> <body> <button id="myBtn">click me</button> <p id="d 阅读全文
posted @ 2023-04-06 10:12 盘思动 阅读(126) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script> </head> <body> <div 阅读全文
posted @ 2023-04-04 22:38 盘思动 阅读(27) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>v-for</title> <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script> </head> < 阅读全文
posted @ 2023-04-04 16:18 盘思动 阅读(49) 评论(0) 推荐(0)
摘要: 在 Vue.js 中,computed 是一种计算属性,它能够根据依赖的数据动态计算出一个新的值。 computed 属性可以定义为一个函数,该函数返回需要计算的值。 当它所依赖的数据发生变化时,Vue.js 会自动重新计算这个值并将其更新到组件上。 ### computed 与watch,meth 阅读全文
posted @ 2023-04-04 11:22 盘思动 阅读(41) 评论(0) 推荐(0)
摘要: 这里msg的效果,在app.mount('#box')后就被覆盖掉了 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <div id="box"> 这里msg的效果,在app.mo 阅读全文
posted @ 2023-04-04 10:15 盘思动 阅读(139) 评论(0) 推荐(0)
摘要: var user = { id : 1, name : 'Tom', age : 10, school : 'primary school', sister:{ name:'Alice', age:12 } } var handler = { get(target,prop){ if(prop == 阅读全文
posted @ 2023-04-04 10:00 盘思动 阅读(41) 评论(0) 推荐(0)
摘要: process.stdout.write('hello '); 这行代码的作用是在控制台中输出字符串 "hello ",并且不会自动换行。这是因为 process.stdout 属性代表 Node.js 进程的标准输出流,可以用于将数据写入到控制台中。 `process.stdout.write() 阅读全文
posted @ 2023-04-04 09:08 盘思动 阅读(559) 评论(0) 推荐(0)
摘要: 在 Vue3 中,proxy 是一种新的 JavaScript 特性,用于创建一个代理对象,对代理对象的访问会通过 get 和 set 等方法拦截, 从而可以对代理对象进行一些自定义的处理逻辑。在 Vue3 中,我们可以使用 reactive 函数将一个普通对象转换成响应式对象, 而这个响应式对象就 阅读全文
posted @ 2023-04-03 09:32 盘思动 阅读(92) 评论(0) 推荐(0)
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 133 下一页