环境: "electron": "27.1.0", "@electron-forge/cli": "^7.0.0", "@electron-forge/maker-squirrel": "^7.0.0", "@vitej…
/* * @Description: 拖拽 */ import { computed, type Ref, ref, onMounted, onUnmounted } from 'vue' export interface Position { x: number y: number } /** * Make elements …
使用ant-design-vue开发时,会报如下警告 Vue received a Component which was made a reactive object. This can lead to unnecessary performance overhead, and should be avoided by marking the c…
[Vue warn]: Failed to resolve component: a-descripttions If this is a native custom element, make sure to exclude it from component resolution via compilerOptionns.isCustomEle…
keep-alive的子元素必须是component或者<router-view/> 否则会不生效,会出现奇奇怪怪的问题,尤其是有echarts的页面 <router-view v-slot="{ Component, route }"> <transition name="fade-slide" mode="out-in"…
provide() { return { tb: () => this.data }; }, inject: ["tb"], computed: { list() { return this.tb(); } }, watch: { list: { deep: true, handler(e) { console.log("watch", e…
1、>>> 2、/deep/ 3、::v-deep 有时候 >>> 无效时,可以试下其他两个 vue3中为 ::v-deep(.ant-input) { //注意这里括号和选择器不要有空格,编辑器会报错 }
IE提示: Access-Control-Allow-Headers 列表中不存在请求标头 authorization。 但在Chrome中是正常的,看ie到network也是有的 感谢 然后去远足 提供的解决方案: 标头其实是大小写敏感的,让后端在返回值里再加个 Authorization,已有的小写的也别删。 然后就是注意 Acces…
调起微信sdk支付时弹出url未注册问题, 微信开发者平台配置url: 访问url:http://www.baidu.com/pay/ment 支付授权目录:http://www.baidu.com/pay/ 访问url:http://www.baidu.com/pay 支付授权目录:http://www.baidu.com/ 访问url:http…
上篇文章说到 vue的jssdk授权方案 ,这篇中使用的上篇的方法授权。 分享个公众号分享引到图片 这里设置一个公共方法: /** * 分享 * @param {Object} data 分享内容 title 分享标题 thumb分享图片 content 分享描述 * @param {String} fullPath 分享路径 通过 this.$r…
本篇方案适用于vue 的 history模式,hash模式不适用! 使用spa模式的vue的 history 路由模式,在ios上加载微信jssdk授权认证出现失败问题。由于ios只记录第一次进来的url,在其他页面调用config授权不能使用window.location.href 做为认证url。 需要做的是如果在ios下,记录第一次进来时的u…