mirror of
https://github.com/TheFunny/ArisuAutoSweeper
synced 2025-12-22 18:55:24 +00:00
32 lines
534 B
Vue
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>
|