Newer
Older
smart-home-server / webclient-vue / src / components / feedback / AppEmptyState.vue
@Eugene Sukhodolskiy Eugene Sukhodolskiy 8 hours ago 299 bytes Scaffold Vue web client
<template>
  <div class="state state-empty">
    <strong>{{ title }}</strong>
    <p v-if="message">{{ message }}</p>
  </div>
</template>

<script setup>
defineProps({
  title: {
    type: String,
    default: "Nothing here",
  },
  message: {
    type: String,
    default: "",
  },
});
</script>