ESC
Components > Modal
YourLandingPageComponent.tsx
1import Modal from "@/components/landing-components/Modal/Modal.vue";
If you want to display a modal on your landing page, we have one ready for you! Each modal is unique, so ours is flexible and easy to customize. Just update the content and style (such as its size) to match your needs and integrate it into your landing page components!

YourLandingPageComponent.vue
1<template>
2 ...
3 <Modal v-model="isOpen" />
4 ...
5</template>
6
7<script>
8import { ref } from "vue";
9const isOpen = ref<boolean>(false);
10
11</script>
12
13<style>
14</style>