UNPKG

lottie-vuejs

Version:

A simple wrapper for integrating lottie-web into VueJs

13 lines (12 loc) 284 B
// Import vue component import LottieAnimation from './LottieAnimation.vue'; export default { install(Vue, options = {}) { Vue.component('lottie-animation', LottieAnimation); Vue.mixin({ mounted() { //console.log('lottie-animation installed!') } }) } };