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:
25
webapp/packages/renderer/src/components/Alas.vue
Normal file
25
webapp/packages/renderer/src/components/Alas.vue
Normal 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>
|
||||
Reference in New Issue
Block a user