vue-js-modal
Version:
Modal Component for Vue.js
18 lines (15 loc) • 416 B
Markdown
# Slots
## Close button
If you want to have a Close (x) button in the top-right corner, you can use "top-right" slot for it. There is no pre-defined Close button style - you will have to implement your own button.
```html{3-7}
<template>
<modal name="foo">
<div slot="top-right">
<button @click="$modal.hide('foo')">
❌
</button>
</div>
Hello, ☀️!
</modal>
</template>
```