js + ts
文章平均质量分 74
主要是js 和 ts 自己的学习总结
smileYuWei
记录自己的进步,加油
展开
-
Vue 为单页面提速----- 性能优化
开发方面:一,路由懒加载当打包构建应用时,所有的js 代码会打包到一个js文件里,会影响到页面加载,可能会导致首页白屏的情况,用户体验感超级差解决方法如下:将不同的路由对应的组件拆分成不同的代码块,只有当路由被访问时才会加载对应的组件(即让路由延迟加载)const HelloWorld= () => import(/* webpackChunkName: "HelloWorld" */'@/views/helloWorld.vue') // 引入组件//在路由里使用HellowWorl原创 2020-09-18 10:15:34 · 779 阅读 · 0 评论 -
node从8.x 升级到12.x之后,vue工程报错了该怎么处理呢?
一、node 版本更新之后再次运行vue 项目时报错报错信息大概是Node Sass could not find a binding for your current environment: Windows 64-bit with Node.js 12.xFound bindings for the following environments: - Windows 64-bit with Node.js 8.x - Windows 64-bit with Node.js 12.xThi原创 2020-08-25 20:14:49 · 521 阅读 · 0 评论 -
数组之乱序
随机排序-前景:随机打乱数组里元素的顺序 function shuffle(arr) { for (let i = arr.length; i > 0; i--) { let j = Math.floor(Math.random() * i); [arr[i - 1], arr[j]] = [arr[j], arr[i - 1]] } return arr;原创 2020-08-15 15:51:38 · 311 阅读 · 0 评论 -
Object拷贝
拷贝一、作用顾名思义,拷贝就是把一个对象的值赋值给另一个对象,且不相互原创 2020-07-03 11:54:05 · 253 阅读 · 0 评论 -
string api: 查看对应的字符串,返回Boolean
startsWith()作用:用来判断当前字符串是否以另外一个给定的字符串开头,并根据判断结果返回true / false语法: str.startsWith(searching, position)参数说明:searching要搜索的子字符串position可选 在str中搜索searching的开始位置,默认值为0,也就是字符串的开头位置注意: position < 0, 默认值为0,从字符串的开头位置开始查找 position > str.length,直接返回false原创 2020-06-16 19:46:54 · 301 阅读 · 0 评论 -
ts 类与类之间的数据传递
main.tsclass Main { const menu = new Menu(); const draw = new Draw(); // 类的相互引用 menu.setDraw(draw); draw.setMenu(menu);}Menu.ts private draw: Draw; public setDraw(draw: Draw): void { th...原创 2020-05-07 20:11:18 · 1380 阅读 · 1 评论 -
国际化的vue-i18n
1.下载cookie2.下载i18nnpm install i18n --save3.配置以及使用常常一个项目中,我会以下列的结构来配置语言包:import Vue from 'vue'import VueI18n from 'vue-i18n'import cookie from 'cookie'Vue.use(VueI18n)const localeCookie = ...原创 2019-07-08 16:15:28 · 143 阅读 · 0 评论 -
js多种方法实现点击空白处关闭面板
1. v-click-outside作用:当鼠标点击了指令所绑定元素的外部时,就会触发绑定方法Installnpm install --save v-click-outsideUseimport vClickOutside from 'v-click-outside'Vue.use(vClickOutside)<template> <p v-click-out...原创 2019-07-05 17:44:26 · 2785 阅读 · 0 评论