41 lines
971 B
Vue
41 lines
971 B
Vue
<style lang="less">
|
|
.vertical-center-modal{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
.ivu-modal{
|
|
top: 0;
|
|
}
|
|
}
|
|
</style>
|
|
<template>
|
|
<i-button @click="modal9 = true">距离顶部 20px</i-button>
|
|
<Modal
|
|
title="对话框标题"
|
|
:visible.sync="modal9"
|
|
:style="{top: '20px'}">
|
|
<p>对话框内容</p>
|
|
<p>对话框内容</p>
|
|
<p>对话框内容</p>
|
|
</Modal>
|
|
<i-button @click="modal10 = true">垂直居中</i-button>
|
|
<Modal
|
|
title="对话框标题"
|
|
:visible.sync="modal10"
|
|
class-name="vertical-center-modal">
|
|
<p>对话框内容</p>
|
|
<p>对话框内容</p>
|
|
<p>对话框内容</p>
|
|
</Modal>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {
|
|
modal9: false,
|
|
modal10: false,
|
|
}
|
|
}
|
|
}
|
|
</script>
|