naive-ui/demo/documentation/components/card/enUS/closable.md
2020-01-27 20:00:39 +08:00

21 lines
290 B
Markdown

# Closable
You may need when use it in modal.
```html
<n-card title="Card" closable @close="handleClose">
Card Content
</n-card>
```
```js
export default {
methods: {
handleClose () {
this.$NMessage.info('Card Close')
}
}
}
```
```css
.n-card {
max-width: 300px;
}
```