Blame view

test/routers/more.vue 971 Bytes
09bce8de   梁灏   update Modal
1
2
3
4
5
6
7
8
9
  <style lang="less">
      .vertical-center-modal{
          display: flex;
          align-items: center;
          justify-content: center;
  
      .ivu-modal{
          top: 0;
      }
9d844d53   梁灏   fixed Layout bug
10
11
      }
  </style>
7fa943eb   梁灏   init
12
  <template>
09bce8de   梁灏   update Modal
13
      <i-button @click="modal9 = true">距离顶部 20px</i-button>
e011898c   梁灏   fixed #197
14
      <Modal
09bce8de   梁灏   update Modal
15
16
17
18
19
20
21
22
23
24
25
26
              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">
e011898c   梁灏   fixed #197
27
28
29
          <p>对话框内容</p>
          <p>对话框内容</p>
          <p>对话框内容</p>
e011898c   梁灏   fixed #197
30
      </Modal>
7fa943eb   梁灏   init
31
32
  </template>
  <script>
7fa943eb   梁灏   init
33
      export default {
e011898c   梁灏   fixed #197
34
35
          data () {
              return {
09bce8de   梁灏   update Modal
36
37
                  modal9: false,
                  modal10: false,
e011898c   梁灏   fixed #197
38
39
              }
          }
7fa943eb   梁灏   init
40
      }
e1134de2   jingsam   not bundle vue in...
41
  </script>