[Vuejs]-Vue js isotope with packery layout-mode

0👍

I think maybe you forgot to add the component inside components

import isotope from 'vueisotope'
...
export default {
      /*   /!\ don't forget this /!\   */
      components: {
        isotope,
      }
      ...
}

Leave a comment