CommonDateTime.story.vue 515 B

1234567891011121314151617181920
  1. <!-- Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/ -->
  2. <script setup lang="ts">
  3. import CommonDateTime from './CommonDateTime.vue'
  4. </script>
  5. <template>
  6. <Story>
  7. <Variant title="Absolute Time">
  8. <CommonDateTime
  9. date-time="2020-10-10 10:10:11"
  10. type="absolute"
  11. absolute-format="date"
  12. />
  13. </Variant>
  14. <Variant title="Relative Time">
  15. <CommonDateTime date-time="2020-10-10 10:10:11" type="relative" />
  16. </Variant>
  17. </Story>
  18. </template>