Vue.js-如何访问子组件的计算属性(Vuetify数据表)

时间:2018-09-18 11:41:45

标签: javascript vue.js vuetify.js

我是vue.js和vuetify的新手。 我已经使用Vuetify数据表组件创建了一个表。该表在第一列中具有复选框,在标题的第一列中具有“全选”复选框。 可以使用数据表组件的内置搜索功能来搜索该表。这是问题所在:

在搜索后过滤表格并单击“检查所有”复选框时,将检查所有行,即使当前未显示的行也是如此。 当前不显示的行不应该被检查。要解决此问题,我想使用数据表组件的内置计算属性“ filteredItems”。但是在互联网上搜索了几个小时后,我找不到解决方案。是否可以在不修改数据表组件本身的情况下执行此操作(可能会发出事件)?

在Vue.js Chrome开发工具中,我可以看到所需的值:

Computed property in Vue DEV Tools

这是我的代码:

数据表:

<v-data-table           
        v-model="selected"
        :headers="headers"
        :items="items"
        :search="search"
        :loading="true"
        :pagination.sync="pagination"            
        :rows-per-page-items="[50,100,200]"
        select-all
        item-key="Hostname"            
        class="elevation-1"           
      >
        <template slot="headers" slot-scope="props">
          <tr>
            <th>
              <v-checkbox
                :input-value="props.all"
                :indeterminate="props.indeterminate"
                primary
                hide-details
                @click.native="toggleAll"
              ></v-checkbox>
            </th>
            <th
              v-for="header in props.headers"
              :key="header.text"
              :class="['column sortable', pagination.descending ? 'desc' : 'asc', header.value === pagination.sortBy ? 'active' : '']"
              @click="changeSort(header.value)"
            >
              {{ header.text }}
              <v-icon small>arrow_upward</v-icon>                  
            </th>
          </tr>
        </template>
        <v-progress-linear slot="progress" color="blue" height="2" v-show="progress_visibility" v-model="downloadPercentage"></v-progress-linear>
        <template slot="items" slot-scope="props">
          <tr :active="props.selected" @click="props.selected = !props.selected">
            <td>
              <v-checkbox
                :input-value="props.selected"
                primary
                hide-details
              ></v-checkbox>
            </td>
            <td class="text-xs-left">{{ props.item.Hostname }}</td>
            <td class="text-xs-left">{{ props.item.FQDN }}</td>
            <td class="text-xs-left">{{ props.item.Subnet }}</td>
            <td class="text-xs-left">{{ props.item.MacAdress }}</td>
            <td class="text-xs-left">{{ props.item.SWProfile }}</td>
          </tr>
        </template>            
      </v-data-table>

“全部检查”功能:

methods: {
  toggleAll () {
    if (this.selected.length)
      this.selected = []
    else
      // Here I want to access the computed property "filteredItems" of the data table
      this.selected =  this.items.slice()
  }

谢谢!

1 个答案:

答案 0 :(得分:2)

我认为您可以对此使用ref

<v-data-table
    ...
    ref="myTable"
><v-data-table>

methods: {
    toggleAll () {
        console.log(this.$refs['myTable'].filteredItems)
    }
}