Blame view

local/routers/notice.vue 639 Bytes
7570318b   梁灏   fixed Tooltip pla...
1
2
3
4
5
6
7
8
9
  <style>
      .tooltip_out{
          border: 1px solid #ccc;
          padding: 20px;
      }
      body{
          padding: 10px;
      }
  </style>
40f8606f   梁灏   add Notice component
10
  <template>
7570318b   梁灏   fixed Tooltip pla...
11
12
13
14
15
      <div class="tooltip_out">
          <Tooltip content="Top Left 提示文字" placement="top-start">
              <Button>上面的左面</Button>
          </Tooltip>
      </div>
40f8606f   梁灏   add Notice component
16
17
  </template>
  <script>
dce3e753   梁灏   add Tooltip compo...
18
      import { Tooltip, Button } from 'iview';
40f8606f   梁灏   add Notice component
19
20
  
      export default {
dce3e753   梁灏   add Tooltip compo...
21
          components: { Tooltip, Button },
40f8606f   梁灏   add Notice component
22
23
24
25
26
          props: {
          
          },
          data () {
              return {
dce3e753   梁灏   add Tooltip compo...
27
  
40f8606f   梁灏   add Notice component
28
29
30
31
32
33
              }
          },
          computed: {
          
          },
          methods: {
40f8606f   梁灏   add Notice component
34
  
40f8606f   梁灏   add Notice component
35
36
37
          }
      }
  </script>