15 lines
294 B
Vue
15 lines
294 B
Vue
<script setup>
|
|
import Layout from '@Holos/Layout/TermsLayout.vue';
|
|
|
|
/** Propiedades */
|
|
defineProps({
|
|
policy: String,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<Layout title="Terms of Service">
|
|
<div class="w-full overflow-hidden sm:rounded-lg prose" v-html="policy" />
|
|
</Layout>
|
|
</template>
|