摘要:
// 获取近半年时间getNowdate(time = 6) { let date = new Date() let year = date.getFullYear() let month = date.getMonth() let sdate = date.getDate() let olddat 阅读全文
摘要:
1.限制手机号只能输入数字 <Form.Item label="手机号码" name="mobile" colon={false} style={{ marginLeft: '30px' }} rules={[ { required: true, message: '*请输入手机号码', }, { 阅读全文
摘要:
官方文档:https://ahooks.js.org/zh-CN/ 以下总结一些个人认为非常实用的hook: 持续更新中: 1. useRequest 请求 import {useRequest } from 'ahooks'; const getSome = async () => {}; con 阅读全文
摘要:
import { CSSProperties, useEffect, useState } from 'react'; import * as echarts from 'echarts'; import Chart from '@/pages/components/Charts'; import 阅读全文
摘要:
<!--纵向轮播--> <template> <div class="swiper-box"> <swiper :direction="'vertical'" :slidesPerView="3.9" :mousewheel="true" :modules="modules" :centeredSl 阅读全文
摘要:
1.我们需要在.scss文件中使用:export导出变量 $menuText: rgba(255, 255, 255, 0.65); $menuActiveText: #409eff; :export { menuText: $menuText; menuActiveText: $menuActiv 阅读全文
摘要:
一,默认插槽和具名插槽 // 子组件 <template> // 匿名插槽 <slot/> // 具名插槽 <slot name='title'/> </template> // 父组件 <!-- 具名插槽 --> <template #default> <div class="tab-header 阅读全文
摘要:
配置前言项目构建:基于vue-cli3构建,使用postcss-px2rem px2rem-loader进行rem适配实现原理:每次打包,webpack通过使用插件postcss-px2rem,帮我们自动将px单位转换成rem单位前方有坑:UI框架部分组件使用JavaScript将css作为内联样式 阅读全文
摘要:
首先npm 引入 import AMapLoader from "@amap/amap-jsapi-loader"; 在生命周期里加载实例 data(){ return { amap:{}, // 存放高德地图实例对象 mapObj: {}, // 存放当前绘画出的地图对象 } } mounted( 阅读全文
摘要:
// 判断浏览器是否为IE const isIE = ( /MSIE (\d+\.\d+);/.test(navigator.userAgent) || ~navigator.userAgent.indexOf('Trident/') ) mounted() { // 兼容ie iframe切换路由 阅读全文