uniapp+vue3+ts 使用pinia报错"hasInjectionContext" is not exported by "node_modules/vue-demi/lib/index.mjs", imported by "node_modules/pinia/dist/pinia.mjs Read More
1、安装插件 yarn add pinia-plugin-persistedstate 2、在store/index.js 中使用 import { createPinia,defineStore } from 'pinia' import piniaPluginPersistedstate fro Read More
1、新建一个名为ContextMenu.vue的文件 <template> <div ref="containerRef"> <slot></slot> <Teleport to="body"> <Transition @beforeEnter="handleBeforeEnter" @enter= Read More
今天新启动一个项目,在 npm install 安装依赖项时出现报错。 $ npm install > husky@0.14.3 install D:\programs\rubik-web\node_modules\husky > node ./bin/install.js husky settin Read More
错误 Vue Template execution failed: ReferenceError: BASE_URL is not defined ReferenceError: BASE_URL is not defined 解决 替换 index.html 替换前 <link rel="icon Read More
"hasInjectionContext" is not exported by "node_modules/vue-demi/lib/index.mjs", imported by "node_modules/pinia/dist/pinia.mjs". 11:36:19.397 at ../no Read More
前言 在前端开发中,除了常用的UI组件库以外,我们还会涉及到基于公司业务,需要定制化开发一些业务组件,还有随着项目的增多,开发人员的增多,为了提高工作效率,我们就需要统一管理好已开发好的业务组件。这时候我们就需要搭建自己的组件库,因为涉及到一些公司的业务,我们只能发布到私服的npm上。下面几点是我们 Read More
页面引入js文件,底部会有个红色提示 处理方式: 在 tsconfig.json 加上 baseUrl 和 paths 的 即可。 { "compilerOptions": { "target": "ESNext", "useDefineForClassFields": true, "module" Read More
方式一: <template> <div class="table-container"> <el-table size="mini" :header-cell-style="{'background':'#d3e0ff'}" :data="tableData" :span-method="obje Read More
<el-table size="mini" :stripe="false" :header-cell-style="{'background':'#d3e0ff'}" :row-class-name="rowClass" :data="tableData" :span-method="objectS Read More