v-filter
<v-grid-col>
<v-header-template>
<input v-filter="name|onKeyDown|*">
<p>Full Name</p>
</v-header-template>
<v-row-template>
<input checked.bind="rowRef.name">
</v-row-template>
</v-grid-col>"=" : "equals"
"<= : "less than or eq"
">=" : "greater than or eq"
"<" : "less than"
">" : "greater than"
"*" : "contains"
"!=" : "not equal to"
"!*" : "does not contain"
"*=" : "begins with"
"=*" : "ends with"
Last updated