Vue v-else-if 指令


示例

如果条件为"true",则使用 v-else-if 指令创建 <div> 元素。

<div v-if="word === 'apple'">
  <img src="/img_apple.svg" alt="apple" />
  <p>The value of the 'word' property is 'apple'.</p>
</div>
<div v-else-if="word === 'pizza'">
  <img src="/img_pizza.svg" alt="pizza" />
  <p>The value of the 'word' property is 'pizza'</p>
</div>
运行示例 »

请参阅下面的更多示例。


定义和用法

v-else-if 指令用于有条件地渲染元素。

v-else-if 指令只能在带有 v-if 的元素之后使用, 或者在另一个带有 v-else-if 的元素之后。

v-else-if用于元素时,后面必须跟一个表达式:

  • 如果表达式的计算结果为"true",则在 DOM 中创建该元素及其所有内容。
  • 如果表达式的计算结果为"false",则该元素将被销毁。

当使用 v-else-if 切换元素时:

  • 我们可以使用内置的 <Transition> 组件在元素进入和离开 DOM 时设置动画。
  • 触发诸如"mounted"和"unmounted"之类的生命周期钩子。

条件渲染指令

本概述描述了如何一起使用用于条件渲染的不同 Vue 指令。

指令 详细信息
v-if 可以单独使用,也可以与 v-else-if 和/或 v-else 一起使用。 如果 v-if 内的条件为"true",则不考虑 v-else-ifv-else
v-else-if 必须在 v-if 或另一个 v-else-if 之后使用。 如果 v-else-if 中的条件为"true",则不考虑后面的 v-else-ifv-else
v-else 如果 if 语句的第一部分为 false,则这部分将会发生。 必须放置在 if 语句的最末尾,位于 v-ifv-else-if 之后。

更多示例

示例 1

v-else-if 写"剩下的已经很少了!" 如果仓库里只剩下 1、2 或 3 台打字机。

<p v-if="typewriterCount>3">
  有存货
</p>

<p v-else-if="typewriterCount>0">
  剩下的已经很少了!
</p>

<p v-else>
  无存货
</p>
亲自试一试 »

示例 2

如果句子包含"burrito",则使用 v-else-if 显示特定文本和图像。

<div id="app">
  <div v-if="text.includes('pizza')">
    <p>The text includes the word 'pizza'</p>
    <img src="img_pizza.svg">
  </div>
  <div v-else-if="text.includes('burrito')">
    <p>The text includes the word 'burrito', but not 'pizza'</p>
    <img src="img_burrito.svg">
  </div>
  <p v-else>The words 'pizza' or 'burrito' are not found in the text</p>
</div>

<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
<script>
  const app = Vue.createApp({
    data() {
      return {
        text: 'I like taco, pizza, Thai beef salad, pho soup and tagine.'
      }
    }
  })
  app.mount('#app')
</script>
亲自试一试 »

示例 3

使用 v-else-if 来翻转图像,使用 <Transition> 组件来创建动画。

App.vue:

<template>
  <h1>mode="out-in"</h1>
  <p>Click the button to get a new image.</p>
  <p>With mode="out-in", 在删除当前图像之前,不会添加下一个图像。 与前面示例的另一个区别是,这里我们使用 computed 属性而不是方法。</p>
  <button @click="indexNbr++">Next image</button><br>
  <Transition mode="out-in">
    <img src="/img_pizza.svg" v-if="imgActive === 'pizza'">
    <img src="/img_apple.svg" v-else-if="imgActive === 'apple'">
    <img src="/img_cake.svg" v-else-if="imgActive === 'cake'">
    <img src="/img_fish.svg" v-else-if="imgActive === 'fish'">
    <img src="/img_rice.svg" v-else-if="imgActive === 'rice'">
  </Transition>
</template>

<script>
export default {
  data() {
    return {
      imgs: ['pizza', 'apple', 'cake', 'fish', 'rice'],
      indexNbr: 0
    }
  },
  computed: {
    imgActive() {
      if(this.indexNbr >= this.imgs.length) {
        this.indexNbr = 0;
      }
      return this.imgs[this.indexNbr];
    }
  }
}
</script>

<style scoped>
  .v-enter-active {
    animation: swirlAdded 0.7s;
  }
  .v-leave-active {
    animation: swirlAdded 0.7s reverse;
  }
  @keyframes swirlAdded {
    from {
      opacity: 0;
      rotate: 0;
      scale: 0.1;
    }
    to {
      opacity: 1;
      rotate: 360deg;
      scale: 1;
    }
  }
  img {
    width: 100px;
    margin: 20px;
  }
  img:hover {
    cursor: pointer;
  }
</style>
运行示例 »

相关页面

Vue 教程:Vue v-if 指令

Vue 参考:Vue v-if 指令

Vue 参考:Vue v-else 指令

Vue 教程:Vue 动画

Vue 教程: Vue 生命周期钩子