@inkline/inkline
Version:
Inkline is the Vue.js UI/UX Library built for creating your next design system
27 lines (24 loc) • 633 B
HTML
<i-popover color="light">
<i-button color="light">Light Popover</i-button>
<template #header>
Popover Header
</template>
<template #body>
This is the popover body. Useful information goes here.
</template>
<template #footer>
Popover Footer
</template>
</i-popover>
<i-popover color="dark">
<i-button color="dark">Dark Popover</i-button>
<template #header>
Popover Header
</template>
<template #body>
This is the popover body. Useful information goes here.
</template>
<template #footer>
Popover Footer
</template>
</i-popover>