Thomas Amland 8e0cc715ab add eslint
2020-08-11 18:32:51 +02:00

13 lines
270 B
Vue

<template functional>
<div>
<slot v-if="props.data" :data="props.data" />
<div v-else class="text-center">
<span class="spinner-grow" />
</div>
</div>
</template>
<script lang="ts">
import Vue from 'vue'
export default Vue.extend({})
</script>