摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document<
阅读全文
09 2020 档案
摘要:很尴尬的是有的时候想截图,却因为那是个弹窗,打开snipping弹窗就关掉了。因此这个方法就比较好用了。 1.直接按prt sc或者 fn+prt sc 或者ctrl+ 。。。 2.在【开始】中打开【画图】工具 3.ctrl+v就可以看见截图了。
阅读全文
摘要:在Vs Code 中 ctrl+shift+p 输入keyboard, 选择Json那个文件 在打开的文件中替换或者添加 [ { "key": "ctrl+shift+u", "command": "editor.action.transformToUppercase", "when": "edit
阅读全文
摘要:function(a,b){ return a.localeCompare(b, undefined, {sensitivity: 'base'}) }
阅读全文
摘要:下面部分来自:https://www.cnblogs.com/chenmeng0818/p/6370819.html js中的正则表达式入门 什么是正则表达式呢? 正则表达式(regular expression)描述了一种字符串匹配的模式,可以用来检查一个字符串是否含有某种子串、将匹配的子串做替换
阅读全文
摘要:import Vue from 'vue'; import VueI18n from 'vue-i18n'; import stroe from './store' import en from '../en'; import zh from '../cn'; Vue.use(VueI18n); c
阅读全文