上一页 1 2 3 4 5 6 ··· 67 下一页
摘要: 原文地址:https://note.youdao.com/ynoteshare/index.html?id=430fa672072c30f5ec44ebd08ec546b3&type=note&_time=1677641495573 第一步:升级 package.json 依赖 项目基于 vue-c 阅读全文
posted @ 2023-03-01 11:39 贝尔塔猫 阅读(1635) 评论(0) 推荐(0) 编辑
摘要: 参考资料:https://blog.csdn.net/sinat_41292836/article/details/116499810 babel.config.js module.exports = { presets: [ [ '@vue/app', { targets: { browsers: 阅读全文
posted @ 2023-02-27 09:30 贝尔塔猫 阅读(485) 评论(0) 推荐(0) 编辑
摘要: https://github.com/vitejs/vite/pull/9507 将 vite 版本改为新版本即可解决。我原本的是 v3.0.0 的版本。不过 @vitejs/plugin-legacy 的版本倒无所谓,我依然保持着低版本。 pnpm i vite@3.2.5 @vitejs/plu 阅读全文
posted @ 2023-02-21 17:16 贝尔塔猫 阅读(710) 评论(0) 推荐(0) 编辑
摘要: Unable to close windows in normal mode with ctrl-w · Issue #2056 · VSCodeVim/Vim - Google Chrome 方法1:settings.json 加入 "vim.handleKeys": { "<C-w>": fal 阅读全文
posted @ 2023-02-19 19:18 贝尔塔猫 阅读(171) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/questions/58306002/vs-code-vim-extension-copy-and-paste Paste the following inside your VS Code's settings.json file: "vim.u 阅读全文
posted @ 2023-02-16 09:48 贝尔塔猫 阅读(94) 评论(0) 推荐(0) 编辑
摘要: rollup-plugin-vue2 的配置可以包括: 1. css: 是否将 vue 组件的样式作为单独的文件打包。2. compilerOptions: Vue 编译器的设置,可以设置其为 runtimeOnly 或 standalone 模式。3. preprocessStyles: 在样式编 阅读全文
posted @ 2023-02-07 14:16 贝尔塔猫 阅读(240) 评论(0) 推荐(0) 编辑
摘要: vue-cli vue.config.js // 第一步,在 vue.config.js 中定义 // 注意:定义的变量必须是 APP_ 开头。 这是 vue-cli 的硬性规范。 process.env.APP_VERSION = require('./package.json').version 阅读全文
posted @ 2022-12-14 14:08 贝尔塔猫 阅读(1922) 评论(0) 推荐(0) 编辑
摘要: 官方文档:https://typicode.github.io/husky/#/?id=install 第三方教程:https://blog.csdn.net/HHoao/article/details/127833268 第一步:安装 git 环境 https://git-scm.com/down 阅读全文
posted @ 2022-12-14 10:12 贝尔塔猫 阅读(943) 评论(0) 推荐(1) 编辑
摘要: 补充:其实用 useRouter 也可以实现 import { NavigationGuardNext, RouteLocationNormalized } from 'vue-router' // useRouter const $router = useRouter() // 路由拦截器 $ro 阅读全文
posted @ 2022-12-12 10:17 贝尔塔猫 阅读(5900) 评论(0) 推荐(1) 编辑
摘要: 补充:其实不依赖 defineOptions 插件设置 name 的方式也可以实现。 App.vue <template> <div id="app" class="container"> <router-view v-slot="{ Component }"> <keep-alive> <comp 阅读全文
posted @ 2022-12-09 09:06 贝尔塔猫 阅读(331) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 67 下一页