naive-ui/demo/documentation/components/modal/enUS/formBasic.md

28 lines
425 B
Markdown
Raw Normal View History

2019-11-13 11:40:32 +08:00
# Form Basic
```html
<n-button
size="small"
@click="isActive = true"
>
Start Me up
</n-button>
<n-modal v-model="isActive"
preset="form"
title="Confirm modal"
>
<template v-slot:header>
<div style="color:red;">title</div>
</template>
<div slot="content">content</div>
<div slot="footer">footer</div>
</n-modal>
```
```js
export default {
data () {
return {
isActive: false,
}
}
}
```