1
0
mirror of https://github.com/TheFunny/ArisuAutoSweeper synced 2025-12-22 18:55:24 +00:00
ArisuAutoSweeper/webapp/packages/renderer/src/components/Alas.vue
2023-11-01 15:33:35 +08:00

32 lines
534 B
Vue

<template>
<iframe
class="alas"
:src="webuiUrl"
></iframe>
</template>
<script lang="ts">
import {computed, defineComponent} from 'vue';
import {useAppStoreWithOut} from '/@/store/modules/app';
export default defineComponent({
name: 'AlasPage',
setup() {
const appStore = useAppStoreWithOut();
const webuiUrl = computed(() => appStore.webuiUrl);
return {
webuiUrl,
};
},
});
</script>
<style scoped>
.alas {
border-width: 0;
width: 100vw;
height: 100vh;
overflow: hidden;
}
</style>