mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2026-01-15 03:15:57 +08:00
42 lines
922 B
Vue
42 lines
922 B
Vue
<script setup lang="ts">
|
|
import { onMounted, onUnmounted, ref } from 'vue';
|
|
import Player from 'xgplayer';
|
|
import 'xgplayer/dist/index.min.css';
|
|
|
|
const domRef = ref<HTMLElement>();
|
|
const player = ref<Player>();
|
|
|
|
function renderXgPlayer() {
|
|
if (!domRef.value) return;
|
|
const url = 'https://lf9-cdn-tos.bytecdntp.com/cdn/expire-1-M/byted-player-videos/1.0.0/xgplayer-demo.mp4';
|
|
player.value = new Player({
|
|
el: domRef.value,
|
|
url,
|
|
playbackRate: [0.5, 0.75, 1, 1.5, 2]
|
|
});
|
|
}
|
|
function destroyXgPlayer() {
|
|
player.value?.destroy();
|
|
}
|
|
|
|
onMounted(() => {
|
|
renderXgPlayer();
|
|
});
|
|
|
|
onUnmounted(() => {
|
|
destroyXgPlayer();
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<NCard title="视频播放器插件" :bordered="false" class="h-full card-wrapper">
|
|
<div class="flex-center">
|
|
<div ref="domRef" class="h-auto w-full shadow-md"></div>
|
|
</div>
|
|
</NCard>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|