import { Meta, Props, Story, Preview } from '@storybook/addon-docs/blocks'
import { action } from "@storybook/addon-actions"
import BaseDateInput from '@/elements/input/BaseDateInput.vue'

<Meta title="Elements|DateInput" component={ BaseDateInput } />

# Date Input

<Props of={ BaseDateInput } />

<Preview>
  <Story name="Default">
    {{
        components: { BaseDateInput },
        template: `<base-date-input :value="new Date()" @input="action" />`,
        methods: { action: action("updated") }
    }}
  </Story>
</Preview>
