Blame view

examples/routers/modal.vue 883 Bytes
6259471f   梁灏   support Modal
1
2
  <template>
      <div>
672a2805   梁灏   fixed #505
3
          <Button type="primary" @click="modal1 = true">显示对话框</Button>
f024ab82   H   修复modal标题属性首次如果没有...
4
          
672a2805   梁灏   fixed #505
5
6
          <Modal
                  v-model="modal1"
f024ab82   H   修复modal标题属性首次如果没有...
7
                  :title="title"
672a2805   梁灏   fixed #505
8
                  @on-ok="ok"
f024ab82   H   修复modal标题属性首次如果没有...
9
                  :mask-closable="false"
672a2805   梁灏   fixed #505
10
                  @on-cancel="cancel">
f024ab82   H   修复modal标题属性首次如果没有...
11
              <p><Button type="ghost" @click="title = '这是标题'">设置标题</Button> {{title}}</p>
672a2805   梁灏   fixed #505
12
13
14
              <p>对话框内容</p>
              <p>对话框内容</p>
          </Modal>
6259471f   梁灏   support Modal
15
16
17
18
      </div>
  </template>
  <script>
      export default {
672a2805   梁灏   fixed #505
19
20
          data () {
              return {
f024ab82   H   修复modal标题属性首次如果没有...
21
22
                  modal1: true,
                  title:''
672a2805   梁灏   fixed #505
23
24
              }
          },
6259471f   梁灏   support Modal
25
          methods: {
672a2805   梁灏   fixed #505
26
27
              ok () {
                  this.$Message.info('点击了确定');
e5337c81   梁灏   fixed some compon...
28
              },
672a2805   梁灏   fixed #505
29
30
              cancel () {
                  this.$Message.info('点击了取消');
6259471f   梁灏   support Modal
31
32
33
34
              }
          }
      }
  </script>