parsley/app/javascript/components/AppLoading.vue

20 lines
235 B
Vue
Raw Permalink Normal View History

<template>
<div class="app-loading">
Imagine I'm a spinner...
</div>
</template>
<script>
export default {
}
</script>
<style lang="scss" scoped>
.app-loading {
position: absolute;
display: none;
}
</style>