## Project setup ``` npm i vuewindowmodal ```
npm install vuewindowmodal
npm i vuewindowmodal
`$3
`html
Body Element
`$3
#### modelValue
Type: Array
Required: true
Default: nullInput object of page to windowModal component.
It should not be used without v-model directive:
`javascript const page = ref({
width: 200, //Width Of the Modal (Required)
height: 200, //Height Of the Modal (Required)
top: 0, //Top Offset Of the Modal (Required)
left: 0, //Left Offset Of the Modal (Required)
title: "Hello World", //Title Of the Modal
onTop: false, // is On top of the stack (On multiple modal is used)
isMimized: false,
isExpanded: false,
});
`
$3
#### leading
The
leading slot is used to display html element in the header.`html
Custom Leading Element
Body Element
`#### header
If you need to customize the
header slot is used to display html element as header.`html
Custom Header Element
Body Element
`` ### See
* Github