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