幽灵资源网 Design By www.bzswh.com
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 "htmlcode">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 generateUuidmain.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滚动监听,tab表格吸顶
幽灵资源网 Design By www.bzswh.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
幽灵资源网 Design By www.bzswh.com
暂无评论...