安装依赖
npm i html2canvas --save
引入
import html2canvas from "html2canvas"
使用
<div class="body-content" ref='creatImg'&...
yekong
3年前 (2022-03-05)
喜欢
vue开发实现搜索
<template>
<div>
<div class="search">
<div class="searchinput wow fadeInLeft"...
yekong
3年前 (2022-03-05)
喜欢
::v-deep {
.el-input__inner {
height: 44px;
}
}
...
yekong
3年前 (2022-03-02)
喜欢
vue elementui 实现换肤效果
运行实例
代码
/**
* @Author: 858834013@qq.com
* @Name: changeSkin
* @Date: 2022-02-07
* @Desc:
*/
<template>
<di...
yekong
3年前 (2022-02-25)
喜欢
分别是
@mousedown="mousedown"
和
@mouseup="mouseup"
<div class="jianghua" @mousedown="mousedown" @m...
yekong
3年前 (2022-02-21)
喜欢
/**
* @Author: 858834013@qq.com
* @Name: status
* @Date: 2022-02-19
* @Desc:
*/
<template>
<div>
<div v-if="isOnli...
yekong
3年前 (2022-02-18)
喜欢
/**
* @Author: 858834013@qq.com
* @Name: icons
* @Date: 2022-02-19
* @Desc: 根据状态以及类型返回对应的图标
*/
<template>
<div class="icons&...
yekong
3年前 (2022-02-18)
喜欢
<el-tree
ref="tree"
node-key="id"
show-checkbox
:data="organiza...
yekong
3年前 (2022-02-15)
喜欢
vue项目开发中在接口请求qs插件对数据进行序列化经常会用到。
安装依赖
npm install qs --save
引用
在需要的组件中使用
import qs from 'qs'
也可以直接挂载到全局 在main.js引入
import qs as "qs&qu...
yekong
3年前 (2022-02-14)
喜欢
vue开发需要一个弹窗,用的地方比较多,为了避免后期调整,将其抽离出来封装成一个组件,方便后期复用。
/**
* @Author: 858834013@qq.com
* @Name: popWin
* @Date: 2022-02-12
* @Desc:
*/
<temp...
yekong
3年前 (2022-02-12)
喜欢