This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/components/misc/nothing.vue

12 lines
176 B
Vue

<template>
<p class="has-text-centered has-text-grey is-italic p-4 mb-4">
<slot></slot>
</p>
</template>
<script lang="ts">
export default {
name: 'nothing',
}
</script>