mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-28 20:23:26 +08:00
27 lines
595 B
Vue
27 lines
595 B
Vue
<script setup lang="ts">
|
|
// 视频生成功能 - 预留
|
|
</script>
|
|
|
|
<template>
|
|
<div class="video-generation-page">
|
|
<el-empty description="视频生成功能开发中,敬请期待">
|
|
<template #image>
|
|
<el-icon style="font-size: 80px; color: var(--el-color-primary);">
|
|
<i-ep-video-camera />
|
|
</el-icon>
|
|
</template>
|
|
</el-empty>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.video-generation-page {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: var(--el-bg-color);
|
|
}
|
|
</style>
|