init
This commit is contained in:
15
frontend/src/App.vue
Normal file
15
frontend/src/App.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<router-view/>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import {onMounted} from 'vue';
|
||||
|
||||
onMounted(() => {
|
||||
const loadingElement = document.getElementById('loadingPage');
|
||||
if (loadingElement) {
|
||||
(loadingElement as HTMLElement).remove();
|
||||
}
|
||||
|
||||
});
|
||||
</script>
|
||||
<style lang="less"></style>
|
||||
Reference in New Issue
Block a user