DisclaimerPage
The DisclaimerPage component provides a full-page disclaimer view that users see before accessing the application. It displays disclaimer content, terms of service, or usage guidelines in a dedicated page format with an acceptance mechanism.
Preview
Disclaimer
This is the main disclaimer content. Please read and accept the terms to proceed.
Props
| Prop | Type | Required | Description |
|---|---|---|---|
contentHtml | string | No | Main HTML content for the disclaimer body |
postfixHtml | string | No | HTML content displayed after main content (e.g., contact info) |
Usage
Use as a standalone page component:
vue
<template>
<DisclaimerPage
content-html="<h2>Disclaimer</h2><p>Please read and accept the terms to proceed.</p>"
postfix-html="<p>Questions? Contact support@example.com</p>"
/>
</template>