mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
311 B
311 B
Closable
You may need when use it in modal.
<n-card title="Card" closable @close="handleClose">
Card Content
</n-card>
export default {
inject: ['message'],
methods: {
handleClose () {
this.message.info('Card Close')
}
}
}
.n-card {
max-width: 300px;
}