<MediaItem />

The MediaItem component is used to render Images, videos or Iframes

You can find some examples here:

The component is located in the @/components/global/Media/Item directory. To use the component, import it into your file:

import MediaItem from '/components/global/Media/Item';

Usage

To use the component, add it to your template:

<MediaItem />

Properties

<template>
    <component v-if="component && attrs?.src" :is="component" v-bind="attrs" />
</template>