- 博客(84)
- 收藏
- 关注

原创 字母数字上标、下标
上标ᵃ ᵇ ᶜ ᵈ ᵉ ᶠ ᵍ ʰ ⁱ ʲ ᵏ ˡ ᵐ ⁿ ᵒ ᵖ ʳ ˢ ᵗ ᵘ ᵛ ʷ ˣ ʸ ᶻ ⁰ ¹ ² ³ ⁴ ⁵ ⁶ ⁷ ⁸ ⁹ ⁺ ⁻ ⁼ ⁽ ⁾下标ᴀ ʙ ᴄ ᴅ ᴇ ғ ɢ ʜ ɪ ᴊ ᴋ ʟ ᴍ ɴ ᴏ ᴘ ǫ ʀ s ᴛ ᴜ ᴠ ᴡ x ʏ ᴢ ₀ ₁ ₂ ₃ ₄ ₅ ₆ ₇ ₈ ₉ ₊ ₋ ₌ ₍ ₎ₐ ₔ ₑ ₕ ᵢ ⱼ ₖ ₗ ₘ ₙ ₒ ₚ ᵣ ₛ ₜ ᵤ ᵥ ᙮ ᵤ ᵩ ᵦ ₗ ˪ ៳ ៷ ₒ ᵨ ₛ ៴ ᵤ ᵪ ᵧ...
2020-12-14 17:02:31
44826
11
原创 Shopro商城报错TypeError: (void 0) is not a function
【代码】Shopro商城报错TypeError: (void 0) is not a function。
2024-10-30 15:38:16
129
原创 vue yarn报错@achrinza/node-ipc@9.2.2: The engine “node“ is incompatible with this module.
【代码】vue yarn报错@achrinza/node-ipc@9.2.2: The engine "node" is incompatible with this module.
2024-05-30 09:44:00
3019
1
原创 Cannot assign to read only property ‘exports‘ of object ‘#<Object>‘
方式②:安装babel-plugin-transform-es2015-modules-commonjs。webpack打包js文件中不允许混用import和module.exports。.babelrc文件配置。
2023-09-05 15:31:34
560
原创 VUE + electron 使用fs配置
②elementUI的icon丢失:customFileProtocol。①使用fs:configureWebpack。
2023-09-01 22:58:43
664
原创 VUE + IE 报错 [vuex] vuex requires a Promise polyfill in this browser.
1.安装:es6-promise。2.main.js文件引入。
2023-02-15 09:45:07
170
原创 uni-app uViewUI的u-dropdown层级问题
找到uview-ui => components =>u-dropdown => u-dropdown.vue。
2022-11-13 17:33:20
1976
原创 VUE + eCharts 报错 Cannot read properties of undefined (reading ‘init‘)
代码】VUE+eCharts报错Cannotreadpropertiesofundefined(reading'init')
2022-07-27 14:23:52
328
原创 VUE + ElementUI 限制只能输入大写字母
代码:onkeyup="value=value.replace(/[^a-z|A-Z]/g,'').toUpperCase()"
2022-07-06 16:02:09
1277
原创 VUE + ES6链判断运算符
安装:@babel/plugin-proposal-optional-chaining配置:babel.config.js 使用:?.
2022-06-29 16:18:12
331
原创 VUE + flv视频的播放与切换
安装:npm install flv.js --savenpm install videojs-flvjs-es6 --saveHTML:<div id="p-box"> <video id="myVideo" class="videoBox" muted autoplay type="application/x-mpegURL"> <source ref="mflvref" id="mflv" type="video/x-flv" />
2022-05-18 15:54:15
2088
原创 Android 生成证书
生成证书:keytool -genkey -alias 别名 -keyalg RSA -keysize 2048 -validity 36500 -keystore 证书名称查看证书:keytool -list -v -keystore 证书名称
2022-05-13 09:34:22
662
原创 CSS 超过2行显示省略号
overflow: hidden;display: -webkit-box;text-overflow: ellipsis;-webkit-box-orient: vertical;-webkit-line-clamp: 2;
2022-04-27 17:55:00
688
原创 XMLHttpRequest 下载excel文档
const xhr = new XMLHttpRequest();xhr.open('get', 'http://192.168.0.119:54370/receipt/excel/export');xhr.responseType = "blob";xhr.addEventListener('load', () => { if (xhr.status === 200) { // var blob = new Blob([xhr.responseText], { type: "ap.
2022-04-21 13:35:04
746
原创 VUE 表格动态滚动导致点击事件失效问题
HTML:<div id="tableBox"> <div id="table1"> <div v-for="(item, index) in list" :key="index" @click="hanldeClick(item)" > <-- 不重要的row --> </div> </div> <div id="table2"&...
2022-04-07 14:30:29
1222
原创 VUE build mode区分多个线上环境
根目录新增环境变量:配置变量:NODE_ENV = 'production'VUE_APP_ICON = './favicon.png'build语句:"build:dev": "vue-cli-service build --mode development","build:cr14hz": "vue-cli-service build --mode cr14hz","build:cq8j": "vue-cli-service build --mode cq8j"
2022-03-29 18:01:18
1861
原创 VUE 查找数组中符合条件的对象
let val = 1;let list = [ {id:1,name:'张三'}, {id:2,name:'李四'}, {id:3,name:'王五'},];let arr = list.filter((i) => { return val == i.id;});
2022-03-24 14:36:35
6371
原创 VUE CSS流动边框特效(二)
效果:HTML: <div class="divSide"> <span class="s-1" /> <span class="s-2" /> <span class="s-3" /> <span class="s-4" /></div>CSS L.divSide { overflow: hidden; width: 460px; height: 994p...
2022-03-18 17:12:52
2802
1
原创 VUE CSS流动边框特效(一)
效果:HTML:<div class="divSide" />CSS:.divSide { width: 460px; height: 994px; position: relative; background-color: #021025; border: 1px solid rgba(11, 85, 140, 0.5); &::before { content: ""; position: absolute;...
2022-03-18 16:32:48
3442
原创 VUE 报错:this.getOptions is not a function
原因:less版本过高1.卸载npm uninstall less-loader2.安装npm install less-loader@5.0.0
2022-01-22 10:49:36
770
原创 VUE js平滑滚动到相应位置
let temp = document.getElementById("id");temp.scrollIntoView({ block: 'start', behavior: 'smooth' });
2022-01-20 17:49:40
413
vue自定义滚动表格组件
2024-11-12
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人