![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ts.corals.io/frontend/node_modules/vue-tables-2/compiled/methods/ |
"use strict"; module.exports = function (row, column, index, h) { var value = this._getValue(row, column); if (this.templatesKeys.indexOf(column) == -1) { if (typeof value === 'undefined' || !this.opts.highlightMatches || this.filterableColumns.indexOf(column) === -1) { return value; } return this.highlightMatch(value, column, h); } var template = this.opts.templates[column]; template = typeof template == 'function' ? template.apply(this.$root, [h, row, index, column]) : h(template, { attrs: { data: row, column: column, index: index } }); return template; };