上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 25 下一页
摘要: const list = [ {id:1,age:44,index: 3}, {id:2,age:32,index: 1}, {id:3,age:22,index: 4}, {id:4,age:26,index: 2}, ] const compare = key => { return (valu 阅读全文
posted @ 2022-03-24 22:31 柯宝宝智商感人 阅读(31) 评论(0) 推荐(0) 编辑
摘要: ###方法一: ctrl+shift+P,找到 settings.json: "prettier.semi": false, // 分号 "prettier.singleQuote": true, // 单引号 "prettier.trailingComma": "none" // 去掉结尾的逗号 阅读全文
posted @ 2022-03-23 11:46 柯宝宝智商感人 阅读(4247) 评论(0) 推荐(0) 编辑
摘要: 注意,他们不是实体的样式,所以在index.scss中引入是没有用的。 所以需要在vue.config.js中去配置 const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ transp 阅读全文
posted @ 2022-03-23 01:22 柯宝宝智商感人 阅读(487) 评论(0) 推荐(0) 编辑
摘要: let guid = () => { function S4() { return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1); } return ( S4() + S4() + "-" + S4() + "-" + 阅读全文
posted @ 2022-03-18 17:17 柯宝宝智商感人 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 在vue项目中的style标签里 1.Scoped ·当 <style> 标签有 scoped 属性时,它的 CSS 只作用于当前组件中的元素, 父组件的样式将不会渗透到子组件中。 2.子组件的根元素 使用 scoped 后,父组件的样式将不会渗透到子组件中。不过一个子组件的根节点会同时受其父组件的 阅读全文
posted @ 2022-03-18 12:28 柯宝宝智商感人 阅读(698) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 25 下一页