随笔分类 -  Vue

1 2 3 4 5 ··· 14 下一页
摘要: 阅读全文
posted @ 2024-12-12 10:49 ThisCall 阅读(2) 评论(0) 推荐(0) 编辑
摘要:next(`/login?redirect=${to.path}`) login watch: { $route: { handler(route) { this.redirect = (route.query && route.query.redirect) || '/' }, immediate 阅读全文
posted @ 2024-09-19 10:48 ThisCall 阅读(4) 评论(0) 推荐(0) 编辑
摘要:自定义封装组件 z-index问题 <template> <div> <van-overlay :show="isShow" :custom-style="{ background: 'rgb(255, 255, 255, 0.6)', display: 'flex', justifyContent 阅读全文
posted @ 2024-06-25 10:29 ThisCall 阅读(7) 评论(0) 推荐(0) 编辑
摘要:<transition name="fade"> <!-- v-if="monitoring || (!dataType && !showTutelage && !seeSure)" --> <div v-if="monitoring" class="ywy" @click=" showTutela 阅读全文
posted @ 2024-06-04 13:43 ThisCall 阅读(5) 评论(0) 推荐(0) 编辑
摘要:对象属性监听 props: { baseFormObj: Object, }, watch: { 'baseFormObj.measuresItems': { immediate: true, // 如果需要组件创建时立即监听,设置为true handler(newVal, oldVal) { // 阅读全文
posted @ 2024-04-02 14:14 ThisCall 阅读(538) 评论(0) 推荐(0) 编辑
摘要:方法一 vue插件 npm install --save vue-clipboard2 引入 import Vue from 'vue' import VueClipboard from 'vue-clipboard2' Vue.use(VueClipboard) 方法执行 clickCopy() 阅读全文
posted @ 2024-03-14 15:59 ThisCall 阅读(7) 评论(0) 推荐(0) 编辑
摘要:// 父组件为缓存页面,分步 组件使用 v-show created,activated 执行情况 created () { // this.getData() // 每次进入页面都执行 (前提 不是第一步展示,如果是第一步未验证) console.log('初次刷新数据0 ') }, activa 阅读全文
posted @ 2024-01-25 11:56 ThisCall 阅读(43) 评论(0) 推荐(0) 编辑
摘要:<van-dialog v-model="showDialog" showDialog 明明变成false了,跳路由返回后还是弹最后加个v-if解决问题 <van-dialog v-model="showDialog" v-if="showDialog" 阅读全文
posted @ 2024-01-17 09:28 ThisCall 阅读(21) 评论(0) 推荐(0) 编辑
摘要:el-dialog 对 $parent 获取参数或方法有影响,自动增加一层$parent 比如 正常 this.$parent.XXX获取 被el-dialog 包裹后 this.$parent.$parent.xxx的方式才能获取到 阅读全文
posted @ 2023-12-18 14:57 ThisCall 阅读(7) 评论(0) 推荐(0) 编辑
摘要:数字 数字和字母 阅读全文
posted @ 2023-12-08 16:39 ThisCall 阅读(6) 评论(0) 推荐(0) 编辑
摘要:参考 实际使用 升级webpack npm install -D webpack@latest 升级vue-cli npm install -g @vue/cli 创建vue-cli demo 重新配置 vue.config webpack >5报错问题 1、运行下面这行指令,安装在 Webpack 阅读全文
posted @ 2023-11-21 14:02 ThisCall 阅读(51) 评论(0) 推荐(0) 编辑
摘要:防切屏 // 没测出效果 window.addEventListener('pagehide', function () { console.log(11111) // 页面被隐藏,例如用户切换到了另一个标签页或者将窗口最小化 // 实现代码 }); // 亲测有效 document.addEven 阅读全文
posted @ 2023-11-14 11:04 ThisCall 阅读(88) 评论(0) 推荐(0) 编辑
摘要:参考 npm install jsmind --save import 'jsmind/style/jsmind.css'; import jsMind from 'jsmind/js/jsmind.js'; require('jsmind/js/jsmind.draggable.js'); req 阅读全文
posted @ 2023-10-19 16:04 ThisCall 阅读(85) 评论(0) 推荐(0) 编辑
摘要:了解 参考 阅读全文
posted @ 2023-10-16 16:04 ThisCall 阅读(3) 评论(0) 推荐(0) 编辑
摘要:this.$options.methods可以获取自定义的属性,created,mounted等也一样 this.$data 是已经转成了getter和setter,所以拿到的是一个修改后的数据 this.$options.data() 是刚刚传入vue里边,成员没有转成了getter和setter 阅读全文
posted @ 2023-10-13 15:32 ThisCall 阅读(25) 评论(0) 推荐(0) 编辑
摘要:地址 阅读全文
posted @ 2023-10-10 13:44 ThisCall 阅读(15) 评论(0) 推荐(0) 编辑
摘要:// import { showInfoMsg, showErrorMsg } from '@/utils/popInfo' // import ElementUI from 'element-ui'; import { Toast } from 'vant'; function initWebSo 阅读全文
posted @ 2023-06-01 11:38 ThisCall 阅读(106) 评论(0) 推荐(0) 编辑
摘要:// import { showInfoMsg, showErrorMsg } from '@/utils/popInfo' // import ElementUI from 'element-ui'; import { Toast } from 'vant'; function initWebSo 阅读全文
posted @ 2023-05-30 16:30 ThisCall 阅读(228) 评论(0) 推荐(0) 编辑
摘要:单个 全局 多个 https://blog.csdn.net/qq_33666325/article/details/121142304 阅读全文
posted @ 2023-05-30 10:28 ThisCall 阅读(5) 评论(0) 推荐(0) 编辑
摘要:<el-table-column prop="processStatusName" label="状态" width="100" align="center" > <template slot-scope="scope"> <span :style="{ color: setColumnColor( 阅读全文
posted @ 2023-04-12 16:54 ThisCall 阅读(199) 评论(0) 推荐(0) 编辑

1 2 3 4 5 ··· 14 下一页