mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-10 15:46:57 +00:00
21 lines
436 B
TypeScript
21 lines
436 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import MkPagination from './MkPagination.vue';
|
|
const meta = {
|
|
title: 'components/MkPagination',
|
|
component: MkPagination,
|
|
};
|
|
export const Default = {
|
|
render(args, { argTypes }) {
|
|
return {
|
|
components: {
|
|
MkPagination,
|
|
},
|
|
props: Object.keys(argTypes),
|
|
template: '<MkPagination v-bind="$props" />',
|
|
};
|
|
},
|
|
parameters: {
|
|
layout: 'centered',
|
|
},
|
|
};
|
|
export default meta;
|