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