随笔分类 - Vue
摘要:``` /* 滚动条 */ body *::-webkit-scrollbar { width: 5px; height: 10px; } body *::-webkit-scrollbar-track { background: #fff; border-radius: 2px; } body *
阅读全文
摘要:就是代码写的不规范 报错写法 import {Setting} from '@element-plus/icons-vue' import { defineProps ,withDefaults } from 'vue' import {PiProject} from '@/types/Projec
阅读全文
摘要:肯定能解决,哈哈哈,找了这么多,你这次你找对了文章。 网络上的这个资料都是有问题的,没有讲明白原由。 需求,我想在我前端的业务层里使用 store,但是是持久层store,不过没有生效。 下面是错误的写法,这个写是不生效的。 import { useGlobalStore } from '@/sto
阅读全文
摘要:需求: 在使用el-input时不允许使用空格 <el-input v-model.trim="data"></el-input>
阅读全文
摘要:需求:我在写一个todocard,当我点击checkbox时候,父组件也会触发。 我需要在点击子组件checkbox的时候,父组件不触发。 解决方案: 在子组件上加 @click.stop
阅读全文
摘要:Uncaught TypeError: Cannot read properties of null (reading 'element') nnot read properties of null (reading 'index') 错误写法 就是说子组件需要用div包着,你用其他东西,他无法添加
阅读全文
摘要:主要代码是 .parent { justify-content: space-between; } 完整代码案例 .tasklist{ height: calc(80vh); overflow-y: auto; overflow-x: hidden; border: 1px solid #ccc;
阅读全文
摘要:直接在子元素上把flex-shrink设置为0,即可。 .parent div { flex-shrink: 0; } 设置前 设置后 完整代码 .kanban-list { display: flex; width:100%; flex-direction: row; overflow-y: au
阅读全文
摘要:https://geekdaxue.co/read/me-note@vue/mydm8l 需要设置 basicURL 然后就生效了 { "compilerOptions": { // 设置解析非相对模块名称的基本目录 "baseUrl": ".", // 设置模块名到基于baseUrl的路径映射,可
阅读全文
摘要:关于Vue2.x与Es6一些特性 Vue的定位,就是快速开发。 这些特性,我没有过于熟练,导致写的代码质量不高。 过滤器 <template> <div> {{title | myFilter}} </div> </template> <script> export default { name:
阅读全文
摘要:官方文档还是有点难懂,然后点链接找到了 https://github.com/rollup/plugins/tree/master/packages/alias#entries // rollup.config.js import alias from '@rollup/plugin-alias';
阅读全文
摘要:main.js 配置如下 import Router from 'vue-router'; //路由导航冗余报错(路由重复) const originalPush = Router.prototype.push Router.prototype.push = function push(locati
阅读全文
摘要:SpringBoot+Vue前后端分离项目,在过滤器取值为Null 是因为SessionID的问题,因为axios每次的请求都是一次新的sessionId,所以只需要在main.js下配置如下 axios.defaults.withCredentials=true;
阅读全文
摘要:感谢: https://www.cnblogs.com/niuxiaoxian/p/9443873.html 当我们用v-html渲染页面的时候会发现样式并没有添加上,如下 复制代码 <template> <div > <div v-html="some_html" class="box" ></d
阅读全文
摘要:![](https://img2020.cnblogs.com/blog/2146100/202101/2146100-20210110150921563-384808864.png)
阅读全文
摘要:main.ts中的 createApp(App),只作用于一个,如果,有两个,则并不是一个对象,另一个会不生效
阅读全文
摘要:最近 在学前端,然后,学了这个vue-cli脚手架,虽然,我这个vue-cli还不算入门,后我会把这个笔记补上 下面是我的Vue.config.js的配置,我感觉这个复用的程度高,所以记下 了这个随笔 const path = require('path') const CopyWebpackPlu
阅读全文