自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

原创 微应用搭建实践总结(qiankun + React)

qiankun 是一个基于 single-spa 的微前端实现库,是目前主流微前端解决方案之一。本文是对使用 qiankun+React 搭建微应用demo的一个实践以及踩坑记录。

2022-09-13 10:53:37 2315 1

原创 常用git命令

常用git命令合集

2022-08-11 16:40:24 213

原创 前端缓存工具cache-manager

前端缓存工具cache-managerInstallnpm install cache-managerBasic Usageset(key, val, {ttl: ttl}, cb) // * see note belowget(key, cb)del(key, cb)mset(key1, val1, key2, val2, {ttl: ttl}, cb) // set several keys at oncemget(key1, key2, key3, cb) // get severa

2022-02-12 13:36:24 1301

原创 -webkit-background-clip属性不生效问题

-webkit-background-clip属性不生效问题代码>span{ font-size: 14px; &:first-of-type{ display: inline-block; font-size: 24px; background:linear-gradient(0deg,#35f6e9 0%, #069fff 100%); -webkit-backg

2021-10-28 13:39:41 2485 1

翻译 openlayers 和 turf 网格应用

openlayers 和 turf 网格应用<template> <div class="main"> <div class="map" id="map"></div> </div></template><script lang="ts">import {Component, Vue} from "vue-property-decorator"import * as turf f

2021-08-03 18:05:33 1209

原创 cordova-plugin-file文件读取和存储

cordova-plugin-file文件读取和存储安装cordova plugin add cordova-plugin-file使用方法1.确保文件读取、写入权限打开添加权限<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /><uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /

2021-04-22 09:59:32 1051

翻译 CSS属性动态传值

CSS属性动态传值定义CSS变量<span class="header-title" :style="{'--font-color': dropdownFont}"></span>CSS中使用变量.header-title{ color: var(--font-color);}

2021-04-15 17:15:43 2143

翻译 vue 父组件向子组件传递的事件添加额外参数

vue 父组件向子组件传递的事件添加额外参数父组件使用 $event 来表示子组件传递过来的参数具体使用方法子组件添加传递事件this.$emit(‘callbackone’,item.parentId)父组件调用事件@callbackone=“callbackone($event,index)”调用方法callbackone(KaTeX parse error: Expected '}', got 'EOF' at end of input: … console.log(event

2021-04-15 15:23:20 371

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除