<MediaVideo />

<MediaVideo/> component is a child of <MediaItem> RapidLaunch.it recommend use always <MediaItem>

Go to the following link: <MediaItem> to see all the properties of this component

The MediaVideo component is used to embed another document within the current HTML document.This component just renders a video

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

import MediaVideo from '/components/global/Media/Video';

Usage

To use the component, add it to your template:

<MediaVideo />

Properties

<template>
    <video v-if="src" v-bind="bindings" class="overflow-hidden rounded-xl">
        <source :src="src" />
    </video>
</template>