axp-ui/.storybook/preview.ts

16 lines
254 B
TypeScript
Raw Normal View History

2023-10-11 10:28:55 +03:00
import type { Preview } from '@storybook/vue3'
const preview: Preview = {
parameters: {
actions: { argTypesRegex: '^on[A-Z].*' },
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/
}
}
}
}
export default preview