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テーブルの吸頂内容を紹介します。以前の文章を検索してください。または、下記の関連記事を引き続きご覧ください。これからもよろしくお願いします。