logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue 点击添加多个input及多个关键字

html<template><div><el-button type="primary" size="small" @click="addInput">添 加</el-button><div v-for="(item,i) of eventPlanForm.matchKeywordArray" :key="i" ><el-input

#vue.js#javascript#前端
Vue 项目处理每次发版后要清理浏览器缓存

一、在index.vue文件添加如下代码(不推荐)<meta http-equiv="pragram" content="no-cache"><meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate"><meta http-equiv="expires" content=

#vue.js#javascript#webpack
vue中 前端根据word模板导出页面中的表格和内容为word文档

<template><div><div @click="onloadWordFile" style="margin:50px">点击测试</div></div></template><script>import Docxtemplater from "docxtemplater";import PizZip fro

#前端#vue.js#javascript
Vue 项目处理每次发版后要清理浏览器缓存

一、在index.vue文件添加如下代码(不推荐)<meta http-equiv="pragram" content="no-cache"><meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate"><meta http-equiv="expires" content=

#vue.js#javascript#webpack
npm ERR node-sass@4.14.1 postinstall: `node scripts/build.js`

建议安装的版本和package.json中node-sass、sass-load的配置版本对应,并且更改packer.json文件后删除node_modules文件后重新安装。否则会出现node_sass版本不兼容的问题。

文章图片
#npm#sass#javascript
git配置用户名和邮箱

局部配置,针对具体项目,在项目目录下运行命令:git config user.name "worker95"git config user.email "worker95@work.com"查看项目的局部配置,在项目目录下运行:git config user.namegit config user.email全局配置(只是多了一个--global参数):git config --global us

#git
vue 点击获取鼠标坐标

HTML<button @click="getMouseXY($event)">点击获取鼠标坐标</button>JSgetMouseXY(e){this.x = e.x //获取鼠标的X坐标(鼠标与屏幕左侧的距离,单位为px)this.y = e.y //获取鼠标的Y坐标(鼠标与屏幕顶部的距离,单位为px)},...

js循环的几种方式总结

前言只描述了一些最基本的用法,和一些可能遇到的问题。一些细节,或者特殊写法之类的,没有。1.for循环最基本的循环方式,不多说。但是我在其它某篇文章上,听别人说,这种最基本的循环才是速度最快的,效率最高的。(就是这https://www.jb51.net/article/…for(var i = 0;i<5;i++){console.log(i)}2.for in循环for in循环是用来遍

#javascript#html#html5
到底了