UNPKG
v-tables-3
Version:
latest (0.4.7)
0.4.7
0.4.6
0.4.5
0.4.4
Vue.js 3 grid components
matfish2/vue-tables-2-private
v-tables-3
/
compiled
/
methods
/
filterable.js
6 lines
(5 loc)
•
217 B
JavaScript
View Raw
1
2
3
4
5
6
"use strict"
;
module
.
exports
=
function
(
column
) {
if
(!
this
.
opts
.
filterable
)
return
false
;
return
typeof
this
.
opts
.
filterable
==
'boolean'
&&
this
.
opts
.
filterable
||
this
.
opts
.
filterable
.
indexOf
(column) > -
1
; };