你瞅啥呢
摘要: 2024-10-24 error An unexpected error occurred: "EPERM: operation not permitted, unlink 'E:\\project\\项目名\\node_modules\\@rollup\\rollup-win32-x64-msvc\\rollup.win32-x64-msvc.node'" 我正在给我的vue3+vite项目安装一个插件,运行安装命令报错: error An unexpected error occurred: "EPERM: operation not permitted, unlink 'E:\\project\\项目名\\node_modules\\@rollup 阅读全文
posted @ 2024-10-24 21:43 叶乘风 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 2024-10-24 vue导入图片路径 你是不是经常这么写: let arr = [ { src: "../../assets/good/1.png", } ] 然后你发现无法显示图片路径,那是因为你引入的图片路径方式不正确, 如果你的项目是由webpack或者vite构建,那么在导入图片路径的时候会有些许区别。 webpack: let 阅读全文
posted @ 2024-10-24 20:04 叶乘风 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 2024-10-24 瀑布流(vue3) 效果图: 代码: <template> <div id="waterfallContainer" class="waterfall-container"> <div v-for="(column, columnIndex) in columns" :key="columnIndex" class=" 阅读全文
posted @ 2024-10-24 17:45 叶乘风 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 2024-10-24 常用重置网站样式 /* 通用重置样式 */ * { margin: 0; padding: 0; box-sizing: border-box; } /* 清除列表的默认样式 */ ul, ol { list-style: none; } /* 去除链接的默认下划线 */ a { text-decoration: n 阅读全文
posted @ 2024-10-24 14:33 叶乘风 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 2024-10-24 A plugin must either be a function or an object with an &quot;install&quot; function. 我在把一个组件注册到全局的时候遇到了这个警告,并且这个组件是没有生效的 原因:仅引用了组件的地址,最后使用app.user(组件),并没有给组件注册 解决方案:给组件注册,例如👇 import Item from "./index.vue"; Item.install = app => { app 阅读全文
posted @ 2024-10-24 14:30 叶乘风 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 2024-10-24 main.js:6 Uncaught TypeError: app is not a function ==》写法错误 vue代码如下: // main.js import { createApp } from 'vue' import './style.css' import App from './App.vue' const app = createApp(App); app().mount('#app') 报 阅读全文
posted @ 2024-10-24 14:13 叶乘风 阅读(17) 评论(0) 推荐(0) 编辑