Use json path in lottie animation

Hi there,

I am trying to use lottie to make some animations in my application.
My problem is how to use the path to the json file that lottie uses.
This is the code for lottie:

                      <lottie-animation 
			:path="LottieCheckIcon" 
			:loop="false"
			:autoPlay="true"
			:loopDelayMin="2.5"
			:loopDelayMax="5"
			:speed="1"
			:width="50"
			:height="50"
			/>

And the import:
import LottieCheckIcon from ‘…/assets/icon_check.json’;

export default {
	props: {
		title: String,
	},
	components: {
			LottieCheckIcon
		},
	data() {
		return{
			LottieCheckIcon: LottieCheckIcon,

The problem is that LottieCheckIcon is the json content, not the path, and lottie needs the path.
How can I import an asset path? o How can I use it in lottie’s html component?

Thanks!!!