vue 自定指令生成uuid滚动监听达到tab表格吸顶效果
编程学习 2021-07-04 14:06www.dzhlxh.cn编程入门
这篇文章主要介绍了vue 自定指令生成uuid滚动监听达到tab表格吸顶效果,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
utils/index,.js
/**
* 生成UUID
* @param withSeparator 是否有分割符
* @returns {string}
*/
export function generateUUID(withSeparator = true) {
let d = new Date().getTime()
if (window.performance && typeof window.performance.now === 'function') {
d += performance.now()
}
const tpl = withSeparator ? 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx' : 'xxxxxxxxxxxx4xxxyxxxxxxxxxxxxxxx'
return tpl.replace(/[xy]/g, function(c) {
const r = (d + Math.random() * 16) % 16 | 0
d = Math.floor(d / 16)
return (c === 'x' ? r : (r & 0x3 | 0x8)).toString(16)
})
}
创建一个generate-uuid/index.js自定义指令文件
import { generateUUID } from '@/utils'
const generateUuid = {
inserted(el, binding) {
const { value } = binding
if (!value) {
const hasUUID = generateUUID(value)
el.setAttribute('data-uuid', hasUUID)
if (!hasUUID) {
el.parentNode && el.parentNode.removeChild(el)
}
}
}
}
generateUuid.install = function(Vue) {
Vue.directive('generate-uuid', generateUuid)
}
export default generateUuid
main.js引入
import GenerateUUID from '@/directive/generate-uuid' Vue.use(GenerateUUID)
页面使用
<el-table v-generate-uuid="false" >
使用uuid元素方法
const topRow = this.$refs.multipleTable
const hash = topRow.$el.dataset.uuid
const tableHeader = document.querySelector(`.el-table[data-uuid="${hash}"] .el-table__header-wrapper`)
if (tableHeader) {
tableHeader.style.width = topRow.$el.getBoundingClientRect().width + 'px'
}
总结
到此这篇关于vue 自定指令生成uuid滚动监听达到tab表格吸顶效果的代码的文章就介绍到这了,更多相关vue滚动监听tab表格吸顶内容请搜索狼蚁SEO以前的文章或继续浏览狼蚁网站SEO优化的相关文章希望大家以后多多支持狼蚁SEO!
编程语言
- Win10 PC创意者更新慢速版15048改进内容与已知问题
- 用纯CSS3实现网页中常见的小箭头
- 神舟笔记本问题集锦
- Bellnames常用操作说明
- 揭秘手机淘宝搜索排序的影响因素
- XHTML入门学习教程-网页Head和DTD
- 笔记本光驱保养常用知识
- hzhost虚拟主机系统致命漏洞
- 电脑无线网络出现红色叉叉无线网卡打不开的六
- 16项评比不得不看 机箱哪些功能最实用
- AI怎么绘制一个呲牙的qq表情-
- 红帽指点杆机械键盘 TEX Yoda上手体验测评
- 笔记本电脑保养常识有哪些-笔记本保养常识总结
- cdr怎么设计圆角矩形效果的图标-
- 在XSLT样式表中声明命名空间小结
- Fireworks教程-常用操作技巧总结