纵向滚动条
.is-scrolling-none::-webkit-scrollbar {
width: 6px;
height: 200px;
}
/*滚动条滑块*/
.is-scrolling-none::-webkit-scrollbar-thumb {
/...
yekong
3年前 (2022-06-15)
喜欢
代码
/**
* @Author: 858834013@qq.com
* @Name: popWin
* @Date: 2022-06-10
* @Desc:
*/
<template>
<div>
<el-dialog
...
yekong
3年前 (2022-06-13)
喜欢
vue element ui Select自定义样式
<el-select v-model="value" placeholder="请选择">
<el-option
v-for="item...
yekong
3年前 (2022-06-11)
喜欢
<div class="material">
<el-checkbox-group v-model="checkList">
<el-checkbox labe...
yekong
3年前 (2022-06-11)
喜欢
vue配置代码
import { createRouter, createWebHistory } from 'vue-router'
const router = createRouter({
history: createWebHistory(),
rout...
yekong
3年前 (2022-06-11)
喜欢
/**
* @Author: 858834013@qq.com
* @Name: tuceng
* @Date: 2022-06-10
* @Desc:
*/
<template>
<div class="tuceng wow fadeInLe...
yekong
3年前 (2022-06-10)
喜欢
安装依赖
npm install @wcjiang/notify --save
使用
import mp3s from './assets/mp3/msg.mp3'
import Notify from '@wcjiang/notify'
const notify = new...
yekong
3年前 (2022-06-09)
喜欢
运行实例
使用
<range @getdata="getStatus"></range>
getStatus (e) {
this.status = e
},
代码
/**
* @Author: 85...
yekong
3年前 (2022-06-08)
喜欢
vue开发 导航菜单样式自定义,因为element ui NavMenu的功能已经满足需要,只需要调整样式就可以了。
使用代码
<sidebar :openeds="[0]" active="attendance"></...
yekong
3年前 (2022-06-07)
喜欢
客户提出登录后仍然返回,请登录,排查发现是提示信息持续5秒,用户登录在2秒内完成了登录。所以调整了一下,登录前关闭message弹窗。或者提示信息设置的短一点。
通过closeAll()关闭
this.$message.closeAll() 关闭所有弹窗
var that=th...
yekong
3年前 (2022-06-05)
喜欢