摘要:
<template> <el-form class="form" :inline="formConfig.inline" :model="value" :label-width="formConfig.labelWidth" :rules="rules" :ref="refString" :size 阅读全文
摘要:
###1. join() 功能:将数组中所有元素都转化为字符串并连接在一起。 ###2. reverse() 功能:将数组中的元素颠倒顺序。 ###3. concat() 功能:数组拼接的功能 ,返回新数组,原数组不受影响。 ###4. slice() 截取数组生成新数组,原数组不受影响。 返回的数 阅读全文
摘要:
##1.字符方法: str.charAt(): 可以访问字符串中特定的字符,可以接受0至字符串长度-1的数字作为参数,返回该位置下的字符,如果参数超出该范围,返回空字符串,如果没有参数,返回位置为0的字符; str.charCodeAt(): 和charAt()用法一样,不同的是charCodeAt 阅读全文
摘要:
npm 安装echarts npm install echarts -D 使用流程 #1. 引入echarts,并配置成全局方法 vue2 import * as echarts from 'echarts'; Vue.prototype.$echarts = echarts ##vue3 impo 阅读全文
摘要:
// vue.config.js const path = require('path'); const CompressionWebpackPlugin = require("compression-webpack-plugin"); // 开启gzip压缩, 按需引用 const product 阅读全文
摘要:
npm安装cheerio和axios npm isntall cheerio npm install axios 利用cheerio抓取对应网站中的标签根据链接使用axios获取对应页面数据 const cheerio = require('cheerio'); //获取HTML文档的内容 cons 阅读全文
摘要:
引入相关的node包 npm install --save style-loader sass-loader node-sass file-loader 安装好之后,为了可以在.vue和.scss中使用,需要在vue.config.js中配置对应的解析器 module.exports = { ent 阅读全文
摘要:
##节流 // fn是我们需要包装的事件回调, interval是时间间隔的阈值 function throttle(fn, interval) { let last = 0; // last为上一次触发回调的时间 // 将throttle处理结果当作函数返回 return function() { 阅读全文