如何在一个类vue.js 2中添加2个条件?

时间:2017-05-03 12:27:05

标签: vue.js vuejs2 vue-component

我的vue组件是这样的:

<template>
    <a :class="'btn ' + [respond == 'responseFound' ? ' btn-yellow' : ' btn-default', type == 1 ? ' btn-block' : ' btn-xs center-block']">
       ...
    </a>
</template>

我尝试这样,但它不起作用?

3 个答案:

答案 0 :(得分:8)

您可以使用:class="[array, of, classes]"语法:

<a :class="['btn', (respond === 'responseFound' ? 'btn-yellow' : 'btn-default'), (type === 1 ? 'btn-block' : 'btn-xs center-block')]">

作为奖励,你不必担心增加领先的空间,Vue会处理它。

答案 1 :(得分:2)

只是为了在视图/模板/标记中保持清洁,将条件移动到计算属性:

<template>
  <a :class="['btn', getRespondClass, getTypeClass]">
</template>

<script>
  export default {
    data () {
      return {
        respond: '',
        type: ''
      }
    },
    computed: {
      getRespondClass () {
        return this.respond === 'responseFound' ? 'btn-yellow' : 'btn-default'
      },
      getTypeClass () {
        return this.type === 1 ? 'btn-block' : 'btn-xs center-block'
      }
    }
  }
</script>

答案 2 :(得分:0)

很确定当前显示的答案说明了如何在 1 个条件下添加多个类。但是如果你想为你的类添加多个条件,你可以简单地这样做:

:class="{classname: condition_one && condition two}"