Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

169
Visualizações
Hide specific row of a table

I have this simple table:

enter image description here

<v-simple-table>
    <template v-slot:default class="my-20 py-20">
        <thead>
            <tr>
                <th class="text-left">Attribute</th>
                <th class="text-left">Operator</th>
                <th class="text-left">Values</th>
            </tr>
        </thead>
        <tbody>
            <tr v-for="(ruleDetail, j) in ruleDetails">
                <td>{{ ruleDetail.attribute_name }}</td>
                <td>{{ ruleDetail.operator_name }}</td>
                <td>{{ ruleDetail.value }}</td>
            </tr>
        </tbody>
    </template>
</v-simple-table>

I would like to hide the row where

ruleDetail.attribute_name == Label batch

What is the best practice to do that?


//all from API 
//this.ruleDetails = response.data.details 

//tried to filter, but it's not working.

    this.ruleDetails = response.data.campaigns.filter((item) => {
        return item.attribute_name != 'Label batch'
    })
about 4 years ago · Juan Pablo Isaza
2 Respostas
Responde à pergunta

0

Try to use includes in filter in computed property :

computed: {
  filteredRules() {
    return this.ruleDetails.filter((item) => !item.attribute_name.toLowerCase().includes(('Label batch').toLowerCase())
  }
}

and then in templae:

<tr v-for="(ruleDetail, j) in filteredRules">
about 4 years ago · Juan Pablo Isaza Relatório

0

Your code is perfect and it should work. One suggestion, cross check response.data.campaigns to see if you are getting the proper response in this or not.

Working Demo as per the code you posted :

new Vue({
  el: '#app',
  vuetify: new Vuetify(),
  data () {
    return {
      campaigns: [
        {
          attribute_name: 'UV Index (Current Weather)',
          operator_name: 'Lesser number',
          value: 7
        },
        {
          attribute_name: 'Temperature (Current Weather)',
          operator_name: 'Greater or equal number',
          value: 17
        },
        {
          attribute_name: 'Label batch',
          operator_name: 'Equal numbers',
          value: 66235
        }
      ],
      ruleDetails: []
    }
  },
  mounted() {
    this.ruleDetails = this.campaigns.filter((item) => {
        return item.attribute_name != 'Label batch'
    })
  }
})
<script src="https://cdn.jsdelivr.net/npm/vue@2.x/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vuetify@2.6.4/dist/vuetify.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vuetify@2.6.4/dist/vuetify.min.css"/>
<div id="app">
  <v-app id="inspire">
    <v-simple-table>
      <template v-slot:default>
        <thead>
            <tr>
                <th class="text-left">Attribute</th>
                <th class="text-left">Operator</th>
                <th class="text-left">Values</th>
            </tr>
        </thead>
        <tbody>
            <tr v-for="(ruleDetail, j) in ruleDetails">
                <td>{{ ruleDetail.attribute_name }}</td>
                <td>{{ ruleDetail.operator_name }}</td>
                <td>{{ ruleDetail.value }}</td>
            </tr>
        </tbody>
      </template>
    </v-simple-table>
  </v-app>
</div>

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda