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
457 B
22 lines
457 B
<template>
|
|
<div class="Cancellation tw-bg-white tw-rounded-[20px] tw-text-base-primary tw-p-5 tw-h-auto">
|
|
<div class="tw-body-3 tw-font-bold tw-mb-[19px]">
|
|
{{ $t("Cancellation") }}
|
|
</div>
|
|
<div class="tw-text-[16px]" v-html="Policy"></div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
props: {
|
|
Policy: {
|
|
type: String,
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped></style>
|