import type { Meta, StoryObj } from '@storybook/vue3'; import { Percentage } from '~/components'; type Story = StoryObj; const meta: Meta = { title: 'Application/Percentage', component: Percentage, tags: ['application', 'input', 'number', 'Percentage'], argTypes: { type: { control: 'select', options: ['success', 'info', 'warning', 'danger'], }, }, args: { percentage: 20, type: 'success', }, }; export const Default: Story = { render: args => ({ components: { Percentage }, setup() { return { args }; }, template: '', }), }; export default meta;