ソースを参照

修改一下布局

caoyang 6 ヶ月 前
コミット
543b7c4108
1 ファイル変更4 行追加5 行削除
  1. 4 5
      src/views/safe/wall/Player.vue

+ 4 - 5
src/views/safe/wall/Player.vue

@@ -1,14 +1,13 @@
 <template>
   <el-card>
-    <template #header>{{title + '(' + memo + ')'}}</template>
+    <template #header>{{title + '(' + memo + ')'}} 
+      <el-button type="primary" @click="play('res')" size="small"><Icon icon="fa-solid:video" /> 原画面</el-button>
+      <el-button type="success" @click="play('ai')" size="small"><Icon icon="fa-solid:video" /> AI画面</el-button>
+    </template>
     <video
       ref="videoPlayer"
       controls="true" autoplay="true"
     ></video>
-    <template #footer>
-      <el-button type="primary" @click="play('res')"><Icon icon="fa-solid:video" /> 原画面</el-button>
-      <el-button type="success" @click="play('ai')"><Icon icon="fa-solid:video" /> AI画面</el-button>
-    </template>
   </el-card>
 </template>
 <script setup lang="ts">