摘要:
什么是 构造函数constructor 函数名首字母必须大写 内部使用this对象,来指向将要生成的对象实例 使用new操作符来调用构造函数,并返回对象实例 构造函数用来干什么 所谓构造函数,就是提供了一个生成对象的模板并描述对象的基本结构的函数。一个构造函数,可以生成多个对象,每个对象都有相同的结 阅读全文
摘要:
[].shift.call( arguments ) 拿到第一个参数 arguments为一个数组 shift() 方法用于把数组的第一个元素从其中删除,并返回第一个元素的值 let arr=[1,2,3] arr.shift.call([4,5,6,7,8]) // 4 阅读全文
摘要:
WeakMap 阅读全文
摘要:
var arr=[1,2,3,4] arr.forEach((res)=>{return res+1}) undefined arr //[1,2,3,4] arr.map((res)=>{return res=res+1}) [2, 3, 4, 5] arr //[1,2,3,4] foreach 阅读全文
摘要:
"dev": "vue-cli-service serve", "dev:pro": "vue-cli-service serve --mode production", "build": "vue-cli-service build", "build:stage": "vue-cli-servic 阅读全文
摘要:
'use strict' const path = require('path') const utils = require('./utils') const config = require('../config') const vueLoaderConfig = require('./vue- 阅读全文
摘要:
import { Button, message , modal } from 'ant-design-vue'; import { settlementStatusList,payTypeList } from '@/utils/state' export function timeFix() { 阅读全文
摘要:
我们先了解一下什么是内存泄漏? 我们创建基本类型、对象、函数……所有这些都需要内存。程序的运行需要内存,只要程序提出要求,操作系统或者运行是就必须供给内存。所谓的内存泄漏简单来说是不再用到的内存,没有及时释放 举几个例子: 比如使用EventBus,肯定是要执行register(),那么在Fragm 阅读全文
摘要:
vue slot和component 阅读全文
摘要:
App.vue <titled-frame> <template v-slot="{ user1 }"> My Image’s Title {{ user1.lastName}} <!-- {{ user.lastName }} --> </template> </titled-frame> <te 阅读全文