16 lines
242 B
TypeScript
Executable File
16 lines
242 B
TypeScript
Executable File
import type { Preview } from '@storybook/vue3';
|
|
import './preview.scss';
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default preview;
|