74 lines
1.4 KiB
Vue
74 lines
1.4 KiB
Vue
|
<template>
|
||
|
<article>
|
||
|
<veui-button @click="simpleOpen = true">
|
||
|
Title & content
|
||
|
</veui-button>
|
||
|
<veui-dialog
|
||
|
:open.sync="simpleOpen"
|
||
|
title="Customized Title & Content"
|
||
|
@ok="simpleOpen = false"
|
||
|
@cancel="simpleOpen = false"
|
||
|
>
|
||
|
Customized content via <code><slot></code>.
|
||
|
</veui-dialog>
|
||
|
|
||
|
<veui-button @click="titleIconOpen = true">
|
||
|
Icon in Title
|
||
|
</veui-button>
|
||
|
<veui-dialog
|
||
|
:open.sync="titleIconOpen"
|
||
|
@ok="titleIconOpen = false"
|
||
|
@cancel="titleIconOpen = false"
|
||
|
>
|
||
|
<template #title>
|
||
|
Title with Icon <veui-icon name="flag"/>
|
||
|
</template>
|
||
|
Customized content via <code><slot></code>.
|
||
|
</veui-dialog>
|
||
|
|
||
|
<veui-button @click="footOpen = true">
|
||
|
Foot
|
||
|
</veui-button>
|
||
|
<veui-dialog
|
||
|
:open.sync="footOpen"
|
||
|
title="Customized Foot"
|
||
|
>
|
||
|
Customized content via <code><slot></code>.
|
||
|
<template #foot="{ close }">
|
||
|
<veui-button
|
||
|
ui="s primary"
|
||
|
@click="close('ok')"
|
||
|
>
|
||
|
Close
|
||
|
</veui-button>
|
||
|
</template>
|
||
|
</veui-dialog>
|
||
|
</article>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { Dialog, Button, Icon } from 'veui'
|
||
|
import 'veui-theme-dls-icons/flag'
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
'veui-dialog': Dialog,
|
||
|
'veui-button': Button,
|
||
|
'veui-icon': Icon
|
||
|
},
|
||
|
data () {
|
||
|
return {
|
||
|
simpleOpen: false,
|
||
|
titleIconOpen: false,
|
||
|
footOpen: false
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="less" scoped docs>
|
||
|
.veui-button {
|
||
|
margin-right: 20px;
|
||
|
}
|
||
|
</style>
|