12 2022 档案
摘要:原因 在对element-ui修改组件样式时,需要添加样式穿透(/deep/或>>>)才能生效 解决办法 /deep/.el-upload--picture-card, /deep/.el-upload-list__item{ width: 100px; height: 100px; line-he
阅读全文
posted @
2022-12-21 17:49
Z哎呀
阅读(4407)
推荐(1) 编辑
摘要:报错 在vue中想给computed属性赋值的时候发生的报错 原因 computed计算属性不能使用箭头函数设置getter或setter 解决办法 computed: { propertyName: { get: () => { ... } set: (val) => { ... } } } //
阅读全文
posted @
2022-12-20 11:22
Z哎呀
阅读(1337)
推荐(0) 编辑
摘要:原因 openAi(微软投资的企业)的地区限制,只要有一次非允许地区的访问记录,就会在缓存中留下地区信息,后续将直接读取缓存,不再验证地区来源,拒绝访问。因此,只需要将缓存清除,更换好魔法后再次登入进行验证即可。 解决办法 第一步,复制下面代码到浏览器地址栏 avascript:window.loc
阅读全文
posted @
2022-12-17 21:13
Z哎呀
阅读(172147)
推荐(5) 编辑
摘要:原因分析 如果同时使用了@blur事件,一般是由于触发@keyup.enter的同时也触发了@blur 解决办法 使@keyup.enter指向@blur,即: @keyup.enter.native="$event.target.blur()"
阅读全文
posted @
2022-12-12 09:56
Z哎呀
阅读(657)
推荐(0) 编辑
摘要:报错 本例在computed中进行修改data里的数据时发生的错误 You may have an infinite update loop in a component render function. 原因 data中的数据一直处于监听状态,因此不能在类似computed中频繁修改数据的地方直接
阅读全文
posted @
2022-12-09 15:51
Z哎呀
阅读(2065)
推荐(0) 编辑
// let homeEle = document.querySelector('body')
// homeEle.setAttribute('id', 'particles-js')
// /* ---- particles.js config ---- */
// particlesJS("particles-js", {
// "particles": {
// "number": {
// "value": 380,
// "density": {
// "enable": true,
// "value_area": 800
// }
// },
// "color": {
// "value": "#ffffff"
// },
// "shape": {
// "type": "circle",
// "stroke": {
// "width": 0,
// "color": "#000000"
// },
// "polygon": {
// "nb_sides": 5
// },
// "image": {
// "src": "img/github.svg",
// "width": 100,
// "height": 100
// }
// },
// "opacity": {
// "value": 0.5,
// "random": false,
// "anim": {
// "enable": false,
// "speed": 1,
// "opacity_min": 0.1,
// "sync": false
// }
// },
// "size": {
// "value": 3,
// "random": true,
// "anim": {
// "enable": false,
// "speed": 40,
// "size_min": 0.1,
// "sync": false
// }
// },
// "line_linked": {
// "enable": true,
// "distance": 150,
// "color": "#ffffff",
// "opacity": 0.4,
// "width": 1
// },
// "move": {
// "enable": true,
// "speed": 6,
// "direction": "none",
// "random": false,
// "straight": false,
// "out_mode": "out",
// "bounce": false,
// "attract": {
// "enable": false,
// "rotateX": 600,
// "rotateY": 1200
// }
// }
// },
// "interactivity": {
// "detect_on": "canvas",
// "events": {
// "onhover": {
// "enable": true,
// "mode": "grab"
// },
// "onclick": {
// "enable": true,
// "mode": "push"
// },
// "resize": true
// },
// "modes": {
// "grab": {
// "distance": 140,
// "line_linked": {
// "opacity": 1
// }
// },
// "bubble": {
// "distance": 400,
// "size": 40,
// "duration": 2,
// "opacity": 8,
// "speed": 3
// },
// "repulse": {
// "distance": 200,
// "duration": 0.4
// },
// "push": {
// "particles_nb": 4
// },
// "remove": {
// "particles_nb": 2
// }
// }
// },
// "retina_detect": true
// });
// var count_particles, stats, update;
// stats = new Stats;
// stats.setMode(0);
// stats.domElement.style.position = 'absolute';
// stats.domElement.style.left = '0px';
// stats.domElement.style.top = '0px';
// document.body.appendChild(stats.domElement);
// count_particles = document.querySelector('.js-count-particles');
// update = function() {
// stats.begin();
// stats.end();
// if (window.pJSDom[0].pJS.particles && window.pJSDom[0].pJS.particles.array) {
// count_particles.innerText = window.pJSDom[0].pJS.particles.array.length;
// }
// requestAnimationFrame(update);
// };
// requestAnimationFrame(update);
点击右上角即可分享