Answers for "v bind"

1

vue toggle class

<template>
  	<div>
      <div
        class="staticClass"
        v-bind:class="{ active: isActive, 'text-danger': hasError }"
      ></div>
      <!-- OR -->
      <div
           v-bind:class="[isActive ? activeClass : '', errorClass]"
      ></div>
	</div>
</template>

<script>
  export default {
  	data() {
      isActive: true,
      hasError: false,
      activeClass: 'active',
      errorClass: 'text-danger',
    }
  }
</script>
Posted by: Guest on March-09-2020
14

vue conditional class

<div :class="{ 'prop-name': boolVar }"></div>
Posted by: Guest on March-15-2020
3

vue class binding

<div v-bind:class="[{ active: isActive }, errorClass]"></div>
Posted by: Guest on June-21-2020
2

v- v-bind :

<!-- full syntax -->
<a v-bind:href="url"> ... </a>

<!-- shorthand -->
<a :href="url"> ... </a>

<!-- shorthand with dynamic argument (2.6.0+) -->
<a :[key]="url"> ... </a>
Posted by: Guest on October-05-2020
2

vue js data bind

// with v=bind
 <p><a v-bind:href="website">Text goes here fo the link </a> </p> 

//or with :
 <p><a :href="website">Text goes here fo the link </a> </p>

//website is variable/property with link in a Vue instance
Posted by: Guest on July-02-2020
0

v-bind

<div v-bind:class="{ active: isActive }"></div>
The above syntax means the presence of the active class will be determined by the truthiness of the data property isActive.
Posted by: Guest on August-26-2020

Browse Popular Code Answers by Language