* chore: add storybook * chore: unify FE codeabse * chore: update eslint rules * chore: harmonize the use of "subtle" color * chore: remove an extra sidebar rail * refactor: make panel items more consistent * chore: cleanups after merging new code from base * refactor: refine composables * fix: add lost import * chore: make icon style consistent * fix: don't show empty "supported" methods * refactor: solidify select items
19 lines
424 B
TypeScript
19 lines
424 B
TypeScript
import type { Meta, StoryObj } from '@storybook/vue3';
|
|
import { AppLabel } from './index';
|
|
|
|
const meta: Meta<typeof AppLabel> = {
|
|
title: 'Base/Label',
|
|
component: AppLabel,
|
|
tags: ['autodocs'],
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof AppLabel>;
|
|
|
|
export const Default: Story = {
|
|
render: () => ({
|
|
components: { AppLabel },
|
|
template: '<AppLabel>Email Address</AppLabel>',
|
|
}),
|
|
};
|