vue3:computed
扫码或者点击文字后台提问 原文: https://mp.weixin.qq.com/s/36dd--oj6jmkZblfJRh4iw computed 支持选项式写法 和 函数式写法 1.选项式写法 支持一个对象传入get函数以及set函数自定义操...
Nuxt.js 应用中的 schema:written 事件钩子详解
title: Nuxt.js 应用中的 schema:written 事件钩子详解 date: 2024/11/15 updated: 2024/11/15 author: cmdragon excerpt: schema:written 钩子是 Vite 提供的一种生命周期钩子,在模式写入完...
Nuxt.js 应用中的 schema:beforeWrite 事件钩子详解
title: Nuxt.js 应用中的 schema:beforeWrite 事件钩子详解 date: 2024/11/14 updated: 2024/11/14 author: cmdragon excerpt: schema:beforeWrite 钩子是 Vite 提供的一个功能强大的生命周
vite3+vue3 实现前端部署加密混淆 javascript-obfuscator
安装 pnpm install javascript-obfuscator 安装之后 在项目根目录新建一个 obfuscator.js 在 obfuscator.js 写入以下代码 直接复制粘贴 ` /** @用法 vite打包完成后,使用命令行nodejs执行本文...
Nuxt.js 应用中的 schema:resolved 事件钩子详解
title: Nuxt.js 应用中的 schema:resolved 事件钩子详解 date: 2024/11/13 updated: 2024/11/13 author: cmdragon excerpt: schema:resolved 钩子允许开发者在 Vite 中扩展已解析的 JSON S
揭秘!Vue3.5响应式重构如何让内存占用减少56%
前言 Vue3.5版本又将响应式给重构了,重构后的响应式系统主要有两部分组成: 双向链表和 版本计数。我们在前两篇文章中我们已经讲过了 双向链表和 版本计数,这篇文章我们来讲讲为什么这次重构...
Vuepress-Theme-Hope – 不显示“编辑此页”
直接上答案 theme.ts配置中添加下面这行配置项 { editLinkPattern: ":repo/edit/:branch/:path",// 我是部署的GitLab,具体匹配规则可以照着代码管理工具改 } 原因 花了几个小时,最...
记录—前端Vue使用ffmpeg压缩视频再上传
🧑💻 写在开头 点赞 + 收藏 学会🤣🤣🤣 保姆级操作步骤,从我实际运行中的项目中摘取的所有相关代码展示如下: 1.Vue项目中安装插件ffmpeg 1.1 插件版本...
Nuxt.js 应用中的 vite:extendConfig 事件钩子详解
title: Nuxt.js 应用中的 vite:extendConfig 事件钩子详解 date: 2024/11/12 updated: 2024/11/12 author: cmdragon excerpt: vite:extendConfig 钩子允许开发者在 Vite 项目中扩展默认配置。
Nuxt.js 应用中的 vite:extend 事件钩子详解
title: Nuxt.js 应用中的 vite:extend 事件钩子详解 date: 2024/11/11 updated: 2024/11/11 author: cmdragon excerpt: vite:extend 钩子允许开发者在 Vite 项目中扩展默认开发和构建配置。这...