UNPKG

vue-lottie2

Version:

A simple wrapper for integrating lottie-web into VueJs

13 lines (12 loc) 272 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!') } }) } };