16 lines
277 B
Vue
16 lines
277 B
Vue
|
<template>
|
||
|
<div class="window glass rounded-lg d-flex flex-column justify-center align-center px-2">
|
||
|
<v-progress-linear indeterminate rounded="lg"/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "PreloaderWindow"
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|