在Vue JS中基于ID悬停时显示Div

时间:2019-02-16 03:55:05

标签: vue.js vuejs2 vue-component vue-router

我有一个div,当我想要将鼠标悬停在它上时,它将显示其他div。但是,我的第一个div是动态的,它有一个ID。那么如何根据其ID将鼠标悬停在ID上?

应为@mouseenter="hoverService{{services.id}} = true",但会导致错误。所以我将下面的代码设为静态。

下面是我的代码:

<template>
    <div
    class="col-md-3"
    v-for="(services, index) in servicesFiltered"
    :key="index"
    @mouseenter="hoverService = true"
    @mouseleave="hoverService = false"
    >
    <div class="service_background" v-if="hoverService">
        <div class="mb-1" v-for="(sub_services, index) in services.menu_items" :key="index">
        <router-link
            :to="{ path: `/${sub_services.data}`}"
        >
            <a
            href="#"
            class="btn btn-outline-primary w-100 services_button"
            >{{sub_services.text }}</a>
        </router-link>
        </div>
    </div>
    </div>
</template>


<script>
export default {
  data() {
    return {
      hoverService: false
    };
  }
};
</script>

1 个答案:

答案 0 :(得分:1)

尝试此代码

https://codesandbox.io/s/y7p9qyyovz

您需要为无法使用多个项目的单个变量操作的每个项目保持悬停状态。