mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2024-11-23 23:21:02 +01:00
perf: 💄 Optimize Russian display effect
This commit is contained in:
parent
eeb8a02daf
commit
5ca39ae188
@ -81,6 +81,13 @@
|
|||||||
"watchPostEffect": true,
|
"watchPostEffect": true,
|
||||||
"watchSyncEffect": true,
|
"watchSyncEffect": true,
|
||||||
"ElMessage": true,
|
"ElMessage": true,
|
||||||
"ElButtonProps": true
|
"ElButtonProps": true,
|
||||||
|
"DirectiveBinding": true,
|
||||||
|
"MaybeRef": true,
|
||||||
|
"MaybeRefOrGetter": true,
|
||||||
|
"onWatcherCleanup": true,
|
||||||
|
"useId": true,
|
||||||
|
"useModel": true,
|
||||||
|
"useTemplateRef": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
📱 Отображение и управление вашим Android-устройством с графическим интерфейсом Scrcpy на базе Electron. [English](https://github.com/viarotel-org/escrcpy/blob/main/README.md)
|
📱 Отображение и управление вашим Android-устройством с графическим интерфейсом Scrcpy на базе Electron. [English](https://github.com/viarotel-org/escrcpy/blob/main/README.md)
|
||||||
|
|
||||||
<div style="display:flex;">
|
<div style="display:flex;">
|
||||||
<img src="./screenshots/en-US/overview.jpg" alt="viarotel-escrcpy" width="100%">
|
<img src="./screenshots/ru-RU/overview.jpg" alt="viarotel-escrcpy" width="100%">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
## Особенности
|
## Особенности
|
||||||
|
BIN
screenshots/ru-RU/overview.jpg
Normal file
BIN
screenshots/ru-RU/overview.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 205 KiB |
@ -86,7 +86,7 @@
|
|||||||
<el-table-column
|
<el-table-column
|
||||||
v-slot="{ row, $index }"
|
v-slot="{ row, $index }"
|
||||||
:label="$t('device.control.name')"
|
:label="$t('device.control.name')"
|
||||||
min-width="200"
|
min-width="250"
|
||||||
align="left"
|
align="left"
|
||||||
>
|
>
|
||||||
<MirrorAction
|
<MirrorAction
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
<el-form
|
<el-form
|
||||||
ref="elForm"
|
ref="elForm"
|
||||||
:model="preferenceData"
|
:model="preferenceData"
|
||||||
label-width="225px"
|
label-width="250px"
|
||||||
class="pr-8 pt-4"
|
class="pr-8 pt-4"
|
||||||
>
|
>
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
@ -63,9 +63,11 @@
|
|||||||
>
|
>
|
||||||
</el-link>
|
</el-link>
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<span class="" :title="$t(item_1.placeholder)">{{
|
<div class="truncate max-w-56" :title="$t(item_1.label)">
|
||||||
|
{{
|
||||||
$t(item_1.label)
|
$t(item_1.label)
|
||||||
}}</span>
|
}}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user