摘要:
一、基础 1.1 Chinese——汉化 1.2 HTML Snippets 智能提示HTML标签,以及标签含义 1.3 HTML CSS Support 智能提示CSS类名以及id 1.4 JavaScript(ES6) code snippets ES6语法智能提示,快速输入,还支持.ts,.j 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Cake< 阅读全文
摘要:
背景重复线条 width: 100%; height: 100%; // background-color: rgba(51, 73, 102, 1); background-image: linear-gradient(to left, #334966 0.02rem, transparent 0 阅读全文
摘要:
css .swiper-wrapper { -webkit-transition-timing-function: linear; /*之前是ease-out*/ -moz-transition-timing-function: linear; -ms-transition-timing-funct 阅读全文
摘要:
添加多个页面组件ref,每个页面组件加一个回调函数来判断此页面数据是否已经加载完毕,加载完毕所有页面后执行导出 import React, { useContext, useEffect, useRef, useState } from 'react'; import styles from './ 阅读全文
摘要:
html2canvas+jspdf import useCompToPDF from '@/hooks/use-pdf-hooks/usePDFHooks'; const ref = useRef<HTMLDivElement>(null); const { exportPDf } = useCom 阅读全文
摘要:
官网:http://www.sortablejs.com/ 中文文档:https://www.itxst.com/sortablejs/neuinffi.html github地址如下:https://github.com/SortableJS/react-sortablejs import Rea 阅读全文
摘要:
// 返回一个可变的 ref 对象,该对象只有个 current 属性,初始值为传入的参数( id ?? '' )。 const activeMenuKeyRef = useRef<string | number>(id ?? ''); key[0] ?? activeMenuKey左侧的值是 nu 阅读全文
摘要:
git branch 查看本地所有分支 git status 查看当前状态 git commit 提交 git branch -a查看所有的分支 git branch -r 查看远程所有分支 git commit -am "init" 提交并且加注释 git remote add origin gi 阅读全文
摘要:
子传父 1.先在父级页面的子组件上加上自定义事件 <SearchSelector @attrinfo="propsinfo" /> 2.在子组件里面写方法传 //点击事件,当点击的时候向父级页面传值 props(attrs, attrValue) { // attrinfo自定义事件名(父组件里@a 阅读全文
摘要:
Git本地windows凭证账号更改 1.打开控制面板2.选择用户账户3.点击管理windows凭证4.点击windows凭证5.在下面的普通凭证找到需要删除或者修改的一个6.修改即可 Git 全局设置: git config --global user.name "你的名字" git config 阅读全文