678PDF
首页
软件
博客
工具箱
注册
登录
b
bg7zag 的博客
cqcqcq,这里是BG7ZAG,会coding的HAM,分享生活趣事、建站技术、前端开发、汽车相关、deepin系统、业余无线电等!73!
bg7zag · 注册于 2026-09-17 · 457 博文 · 0 帖子 · 0 回复
博文 (457)
帖子 (0)
全部
程序开发
HAM
电脑&系统
网站建设
包罗万象
汽车相关
#JavaScript
#deepin
#Vue
#H5学习
#越野路书
#深度操作系统
#小程序
#jQuery
#js
#docker
#Node.js
#萝卜报告
#MongoDB
#业余无线电
#宝塔
#CSS
#Linux
#Ajax
#window对象
#git
#HAM
#上传图片
#rust
#nginx
#深度系统
#凌派
#docker compose
#axum
#越野路书第九季
#nuxt
Nuxt.js使用pm2服务端渲染应用部署nginx绑定域名
首先根据官方文档打包: ``` nuxt build // 或者 npm run build ``` 然后把 *.nuxt, static, package.json, nuxt.config.js* 这4个文件夹和文件上传至服务器 然后cd 到...
2026-09-17
👁 2
💬 0
nuxt.js
Vue
服务端渲染
在ts中axios返回not exist on type 'AxiosResponse'
vue的axios请求返回值调取时报下面这错误 ``` Property 'content' does not exist on type 'AxiosResponse<any>'.Vetur(2339) ``` 解决方法是新增一个 `axios.d.ts` 文...
2026-09-17
👁 2
💬 0
axios
ts
typescript
Vue
解决vue的history模式微信jssdk授权认证在ios上失败问题
> 本篇方案适用于vue 的 history模式,hash模式不适用! 使用spa模式的vue的 history 路由模式,在ios上加载微信jssdk授权认证出现失败问题。由于ios只记录第一次进来的...
2026-09-17
👁 3
💬 0
history
iOS
Vue
微信jssdk
微信公众号
封装vue微信公众号分享方法,兼容iOS
上篇文章说到 vue的jssdk授权方案 ,这篇中使用的上篇的方法授权。 分享个公众号分享引到图片 这里设置一个公共方法: ``` /** * 分享 * @param {Object} data 分享内容...
2026-09-17
👁 3
💬 0
Vue
分享
微信公众号
Vue History模式下微信支付授权目录的填写,处理URL未注册
调起微信sdk支付时弹出url未注册问题, 微信开发者平台配置url: ``` 访问url:http://www.baidu.com/pay/ment 支付授权目录:http://www.baidu.com/pay/ ``` ``` 访问u...
2026-09-17
👁 5
💬 0
history
URL未注册
Vue
微信支付
vue项目在IE11中显示 Access-Control-Allow-Headers 列表中不存在请求标头 authorization
IE提示: ``` Access-Control-Allow-Headers 列表中不存在请求标头 authorization。 ``` 但在Chrome中是正常的,看ie到network也是有的 感谢 **然后去远足** 提供的解决...
2026-09-17
👁 2
💬 0
Access-Control-Allow
authorization
ie
IE11
Vue
vue中的深度选择器的三种写法
1、`>>>` 2、`/deep/` 3、`::v-deep` 有时候 >>> 无效时,可以试下其他两个 vue3中为 ``` ::v-deep(.ant-input) { //注意这里括号和选择器不要有空格,编辑器会报错 } ```
2026-09-17
👁 2
💬 0
::v-deep
/deep/
>>>
Vue
深度选择器
Vue.js中provide/inject实现响应式数据更新方案
``` provide() { return { tb: () => this.data }; }, ``` ``` inject: ["tb"], computed: { list() { return this.tb(); } }, watch: { list: { deep: true, handler(e...
2026-09-17
👁 2
💬 0
inject
provide
Vue
vue的keep-alive坑点
keep-alive的子元素必须是`component`或者`<router-view/>` 否则会不生效,会出现奇奇怪怪的问题,尤其是有echarts的页面 https://blog.bg7zag.com/wp-content/uploads/...
2026-09-17
👁 2
💬 0
echarts
keep-alive
Vue
解决vitest +Vue Test Utils 组件中包含第三方组件时报 Failed to resolve component
``` [Vue warn]: Failed to resolve component: a-descripttions If this is a native custom element, make sure to exclude it from component resolution via compil...
2026-09-17
👁 2
💬 0
ant-design-vue
component
vitest
Vue
Vue Test Utils
« 最新
更多 »