mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-26 06:40:17 +08:00
37 lines
825 B
Vue
37 lines
825 B
Vue
<template>
|
|
<div>
|
|
<n-card title="视频播放器插件" class="h-full shadow-sm rounded-16px">
|
|
<div ref="domRef"></div>
|
|
</n-card>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, onMounted, onUnmounted } from 'vue';
|
|
import { NCard } from 'naive-ui';
|
|
import Player from 'xgplayer';
|
|
|
|
const domRef = ref<HTMLElement | null>(null);
|
|
const player = ref<Player | null>(null);
|
|
|
|
function renderXgPlayer() {
|
|
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>
|
|
<style scoped></style>
|