Blame view

examples/routers/poptip.vue 548 Bytes
40f8606f   梁灏   add Notice component
1
  <template>
b75ad4a1   梁灏   fixed #1700
2
3
4
5
6
7
      <div style="margin: 200px;">
          <Poptip title="提示标题" transfer>
              <div slot="content" style="padding: 50px">
                  <Button>click me</Button>
              </div>
              <Button>click 激活</Button>
1d83a8aa   梁灏   fixed #1612
8
          </Poptip>
bf962a69   梁灏   remove Row css - ...
9
      </div>
40f8606f   梁灏   add Notice component
10
11
  </template>
  <script>
40f8606f   梁灏   add Notice component
12
      export default {
2c5faf30   梁灏   init Avatar compo...
13
14
15
16
17
18
19
20
          methods: {
              ok () {
                  this.$Message.info('点击了确定');
              },
              cancel () {
                  this.$Message.info('点击了取消');
              }
          }
40f8606f   梁灏   add Notice component
21
      }
d6342fe1   jingsam   fixed ie bug
22
  </script>