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