Blame view

test/routers/poptip.vue 759 Bytes
40f8606f   梁灏   add Notice component
1
  <template>
071506fc   梁灏   optimize Poptip f...
2
3
4
5
6
7
8
9
10
11
12
13
14
      <div style="margin: 100px">
          <Poptip trigger="hover" placement="bottom" title="提示标题" content="提示内容">
              <i-button>hover 激活</i-button>
          </Poptip>
          <Poptip title="提示标题" placement="bottom" content="提示内容">
              <i-button>click 激活</i-button>
          </Poptip>
          <Poptip trigger="focus" title="提示标题" content="提示内容">
              <i-input type="textarea"></i-input>
              <!--<i-button>focus 激活</i-button>-->
          </Poptip>
          <Poptip trigger="focus" placement="bottom" title="提示标题" content="提示内容">
              <i-input></i-input>
9699c270   梁灏   add Poptip component
15
          </Poptip>
bf962a69   梁灏   remove Row css - ...
16
      </div>
40f8606f   梁灏   add Notice component
17
18
  </template>
  <script>
40f8606f   梁灏   add Notice component
19
      export default {
d6342fe1   jingsam   fixed ie bug
20
  
40f8606f   梁灏   add Notice component
21
      }
d6342fe1   jingsam   fixed ie bug
22
  </script>