mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2024-11-14 18:57:40 +01:00
style: 💄 Optimize style
This commit is contained in:
parent
296e21dfcf
commit
e751d73ad7
@ -1,12 +1,12 @@
|
||||
<!doctype html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="dark">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" href="/logo.ico" />
|
||||
<link rel="icon" href="/logo.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Escrcpy</title>
|
||||
</head>
|
||||
<body>
|
||||
<body class="overflow-hidden">
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.js"></script>
|
||||
</body>
|
||||
|
@ -21,6 +21,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { sleep } from '@/utils'
|
||||
|
||||
export default {
|
||||
props: {
|
||||
device: {
|
||||
@ -41,6 +43,8 @@ export default {
|
||||
return this.$store.preference.getData(...args)
|
||||
},
|
||||
async handleCommand(command) {
|
||||
await sleep(300)
|
||||
|
||||
console.log('handleCommand.command', command)
|
||||
|
||||
if (command === 'close') {
|
||||
|
Loading…
Reference in New Issue
Block a user