Sunday, March 10, 2019

Create On Off/ Switch / Toggle

<template>
  <div>
    <img
      v-if="isOn"
      height="80"
      src="https://image.flaticon.com/icons/png/128/351/351667.png"
    />
    <img
      v-else
      height="80"
      src="https://image.flaticon.com/icons/png/256/515/515077.png"
    />
  </div>
</template>
<script>
export default {
  props: {
    isOn: Boolean
  }
};
</script>


No comments:

Post a Comment

V-MODEL .NUMBER SOLVE 1+1=11

facing this problem? So do I. Vuejs already solve this problem by adding .number on v-model https://vuejs.org/v2/guide/forms.html#n...