LoginSignup
0
1

More than 3 years have passed since last update.

how to get search item with v-data-table

Last updated at Posted at 2020-05-23

環境

vuetify 2.2.26

:o: 修正後


<template>
...
  <v-data-table
    :search="search"
    ref="refTable"
  >
...
</template
<script>
...
console.log(this.$refs.refTable.internalCurrentItems)
...
</script>

:x: 修正前


<template>
...
  <v-data-table
    :search="search"
    ref="refTable"
  >
...
</template
<script>
...
console.log(this.$refs.refTable.items)
...
</script>

参考

this.$refs.tableRefName._data.internalCurrentItems が返すのは
私が見ている現在のテーブルページのフィルタリングされたアイテム。

経緯

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1