1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-05-02 08:46:52 +08:00

Add: Web app 0.2.1

This commit is contained in:
LmeSzinc
2021-10-08 18:10:41 +08:00
parent a4e4dda9f0
commit a32019d9e0
17 changed files with 310 additions and 152 deletions

View File

@@ -0,0 +1,25 @@
<template>
<iframe class="alas" :src="url"></iframe>
</template>
<script lang="ts">
import {defineComponent} from 'vue';
import {webuiUrl} from '../../../main/src/config';
export default defineComponent({
name: 'Alas',
computed: {
url: function () {
return webuiUrl;
},
},
});
</script>
<style scoped>
.alas {
width: 100vw;
height: 100vh;
overflow: hidden;
}
</style>