mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
450 B
450 B
使用 Confirm 预设的插槽
插槽也会随着预设变动。
<n-button
@click="isActive = true"
>
来吧
</n-button>
<n-modal v-model="isActive"
preset="confirm"
title="Confirm"
>
<template v-slot:header>
<div>标题</div>
</template>
<div>内容</div>
<template v-slot:action>
<div>操作</div>
</template>
</n-modal>
export default {
data () {
return {
isActive: false,
}
}
}