Simple to use EmptyState component. It exposes slots for the following sections:
- image-placeholder
- title
- hint (or subtitle)
- action
<empty-state >
<template v-slot:image-placeholder>
<img src="logo.png" />
</template>
<template v-slot:title>
<h1>Well Done!</h1>
</template>
<template v-slot:hint>
<h2>You're all caught up</h2>
</template>
<template v-slot:action>
<Button label="Show Me!"></Button>
<Button label="Or Not!"></Button>
</template>
</empty-state>`Below you can preview an empty state with all features. More previews can be seen in the storybook stories.
npm install
npm run storybook
npm run test:unit
npm run lint
