上一页 1 2 3 4 5 6 7 ··· 12 下一页
摘要: /** * 方法 * @description 对Date的扩展,将 Date 转换为指定格式的String * 月(M)、日(d)、小时(H)、分(m)、秒(s)、季度(q) 可以用 1~2 个占位符, * 年(y)可以用 1~4 个占位符,毫秒(S)只能用 1 个占位符(是 1~3 位的数字) 阅读全文
posted @ 2022-10-15 14:28 青幽草 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 对象数组去重: _.uniqBy([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x'); // => [{ 'x': 1 }, { 'x': 2 }] 应用场景案例 子组件多选数据返回后父组件接受 检查新加入的和原来的数据合并调用去重 import _ from 'l 阅读全文
posted @ 2022-10-10 17:22 青幽草 阅读(45) 评论(0) 推荐(0) 编辑
摘要: <van-button @click="popShow=true">添加单选</van-button> <van-popup v-model:show="popShow" close-icon="close" position="bottom" :style="{ height: '100%',ov 阅读全文
posted @ 2022-10-10 17:17 青幽草 阅读(665) 评论(0) 推荐(1) 编辑
摘要: 使用Echarts插件的时候,多次加载会出现There is a chart instance already initialized on the dom.的警告, 解决办法: 在使用Echarts插件的方法外面定义一个全局变量(注意:一定得是全局变量),然后在插件使用的方法内,添加判断,调用eC 阅读全文
posted @ 2022-09-22 17:24 青幽草 阅读(93) 评论(0) 推荐(0) 编辑
摘要: vant-ui 扩展表单的完整的代码 <template> <div> <slot name="items"></slot> </div> </template> <script> /** * author:ronggang * email:suntework@163.com */ export d 阅读全文
posted @ 2022-09-19 16:39 青幽草 阅读(940) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>css3-scanner</title> <style> .qr-scanner { position: relative; height: 200px; width: 200px 阅读全文
posted @ 2022-09-05 17:01 青幽草 阅读(622) 评论(0) 推荐(0) 编辑
摘要: <script setup > import { ref, reactive, toRefs } from 'vue' import { BrowserMultiFormatReader } from '@zxing/library'; import { Dialog, Notify } from 阅读全文
posted @ 2022-09-05 15:52 青幽草 阅读(2984) 评论(0) 推荐(1) 编辑
摘要: 在单页应用中Vue项目集成Vuex也就足够基本使用了,但是刷新页面的时候数据都会被清空,在某些情况下,我们需要这些状态能保存下来,比如登录后的用户信息、AccessToken、主题配置等。 这里就需要vuex-persistedstate,他可以把数据保存到localStorage或者Cookie 阅读全文
posted @ 2022-09-01 11:19 青幽草 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 创建新的用户片段 点击文件——首选项——用户片段 或者 用快捷Ctrl + Shift + P唤出控制台 然后输入“snippets”并选择 接着输入vue vs code自动生成vue.json文件 { // Place your 全局 snippets here. Each snippet is 阅读全文
posted @ 2022-08-26 17:53 青幽草 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 一个网站有不同的角色,如管理员和用户,不同角色访问的页面不一样。所以针对不同的角色做出不同的限制。 在每一个路由的 meta 属性里,将能访问该路由的角色添加到 roles 里。用户每次登陆后,将用户的角色返回。然后在访问页面时,把路由的 meta 属性和用户的角色进行对比,如果用户的角色在路由的 阅读全文
posted @ 2022-08-04 09:16 青幽草 阅读(398) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 12 下一页