Merge pull request #2667 from rubjo/patch-1
Documentation quickfix: filterMatchModeOptions: Use valid objectpull/2700/head
commit
7a38d05b7a
|
@ -840,8 +840,8 @@ app.use(PrimeVue, {
|
|||
|
||||
<pre v-code.script><code>
|
||||
matchModes: [
|
||||
{label: 'Starts With', FilterMatchMode.STARTS_WITH},
|
||||
{label: 'Contains', FilterMatchMode.CONTAINS},
|
||||
{label: 'Starts With', value: FilterMatchMode.STARTS_WITH},
|
||||
{label: 'Contains', value: FilterMatchMode.CONTAINS},
|
||||
]
|
||||
</code></pre>
|
||||
|
||||
|
@ -856,8 +856,8 @@ FilterService.register('myfilter', (a,b) => a === b);
|
|||
<pre v-code.script><code>
|
||||
matchModes: [
|
||||
{label: 'My Filter', "myfilter"},
|
||||
{label: 'Starts With', FilterMatchMode.STARTS_WITH},
|
||||
{label: 'Contains', FilterMatchMode.CONTAINS},
|
||||
{label: 'Starts With', value: FilterMatchMode.STARTS_WITH},
|
||||
{label: 'Contains', value: FilterMatchMode.CONTAINS},
|
||||
]
|
||||
</code></pre>
|
||||
|
||||
|
|
Loading…
Reference in New Issue