CMS lightboxes are used to show CMS content when clicking an image or button.
<template v-for="post in posts">
<div>
<h1 v-html="post.name">Explain your product and its main benefit</h1>
<img v-bind:src="post.image" data-toggle="modal" v-bind:data-options="{'imgSrc':post.image}" />
</div>
</template>