You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
449 B

2 years ago
  1. <template>
  2. <div class="Cancellation tw-bg-neutrals-0 tw-rounded-[20px] tw-text-base-primary tw-p-5 tw-h-auto">
  3. <div class="tw-body-3 tw-font-bold tw-mb-[11px]">
  4. Cancellation
  5. </div>
  6. <div v-html="Policy"></div>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. show: false,
  14. }
  15. },
  16. props: {
  17. Policy: {
  18. type: String,
  19. },
  20. },
  21. }
  22. </script>
  23. <style lang="scss" scoped></style>