13 lines
303 B
Vue
13 lines
303 B
Vue
|
|
<script setup>
|
||
|
|
//飞机控制器
|
||
|
|
</script>
|
||
|
|
<template>
|
||
|
|
<div class="w-[506px] flex flex-row items-center">
|
||
|
|
<div class="w-[136px] h-[46px] bg-[#ff0000]"></div>
|
||
|
|
|
||
|
|
<div class="w-[210px] h-[46px] bg-[#8a1515] mx-3"></div>
|
||
|
|
|
||
|
|
<div class="w-[136px] h-[46px] bg-[#8a1515]"></div>
|
||
|
|
</div>
|
||
|
|
</template>
|