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.

22 lines
462 B

2 years ago
2 years ago
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-[19px]">
  4. {{ $t("Cancellation") }}
  5. </div>
  6. <div class="tw-text-[16px]" v-html="Policy"></div>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. }
  14. },
  15. props: {
  16. Policy: {
  17. type: String,
  18. },
  19. },
  20. }
  21. </script>
  22. <style lang="scss" scoped></style>