Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
229 views
in Technique[技术] by (71.8m points)

javascript - Need to bind v-model and ref

just dealing with vue js. Need to bind v-model to input which is output through v-for with refs. I made a search in table, so that you can do a search on each attribute, but the v-model when outputting input is the same for everyone

<template>
  <table>
    <thead>
      <tr>
        <th v-for="(el, index) in tableHeader" :key="index">
          <input type="text" v-model="tableHeader[index]" @keyup="searchFilter"/>
        </th>
      </tr>
    </thead>
    <tbody>
      <tr class="table__row" v-for="trainer in trainers" :key="trainer.id">
        <td ref="id">{{ trainer.id }}</td>
        <td ref="name">{{ trainer.fullname }}</td>
        <td ref="email">{{ trainer.email }}</td>
        <td ref="language">{{ trainer.language }}</td>
      </tr>
    </tbody>
  </table>
</template>

<script>
export default {
  name: "AdminTable",
  props: {
    tableHeader: {
      type: Array,
      required: true,
    },
    trainers: {
      type: Array,
      required: true,
    },
  },
  data() {
    return {
      searchValue: "",
    };
  },
  methods: {
    searchFilter() {
      const val = this.searchValue;
      const tableText = this.$refs.id;
      if (val != "") {
        tableText.forEach((table) => {
            const tableRow = table.closest('.table__row');
            console.log(tableRow);
          if (table.textContent.toLowerCase().search(val.toLowerCase()) == -1) {
            tableRow.style.display = "none";
          } else {
            tableRow.style.display = "table-row";
          }
        });
      }
    },
  },
};
</script>
question from:https://stackoverflow.com/questions/65922126/need-to-bind-v-model-and-ref

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...