[Vuejs]-How to handle transitions and animations in Gridsome

0👍

Got the data part wrong, animations do work!

<script>
    export default {
      name: "headNav",
      data () {
          return {
            show: false
        }
      },
    };
</script>

Leave a comment