[Vuejs]-Vue.js 2.0 start component from start

0👍

you can wrap an element in your component with transition

Sample from docs

<template>
  <div id="demo">
    <button v-on:click="show = !show">
      Toggle
    </button>
    <transition name="fade">
      <p v-if="show">hello</p>
    </transition>
  </div>
</template>

<script>
  new Vue({
    el: '#demo',
    data: {
      show: true
    }
  })
</script>

<style>
  .fade-enter-active, .fade-leave-active {
    transition: opacity .5s
  }
  .fade-enter, .fade-leave-active {
    opacity: 0
  }
</style>

Docs: vuejs transitions

Leave a comment