[+] Create loading overlay

This commit is contained in:
Hykilpikonna
2019-10-13 19:42:17 -04:00
parent a537ced0d7
commit cc23f8565a
2 changed files with 22 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import {Component, Prop, Vue} from 'vue-property-decorator';
@Component({
components: {}
})
export default class Loading extends Vue
{
// @ts-ignore
@Prop() text: string;
}
+12
View File
@@ -0,0 +1,12 @@
<template>
<div id="loading">
<div id="text">
{{text}}
</div>
</div>
</template>
<script src="./loading.ts" lang="ts"></script>
<style scoped>
</style>