Commit e61c092eac1261be52856e9a46aadf8d17015571

Authored by Aresn
1 parent f7a436c0

update Page style

examples/routers/page.vue
1 1 <template>
2 2 <div style="margin: 100px;">
3   - <Page :total="100" show-sizer placement="top"></Page>
  3 + <Page :total="100" :current="val" show-sizer placement="top"></Page>
4 4 </div>
5 5 </template>
6 6 <script>
7 7 export default {
8   -
  8 + data () {
  9 + return {
  10 + val: 2
  11 + }
  12 + }
9 13 }
10 14 </script>
... ...
src/styles/components/page.less
... ... @@ -24,7 +24,8 @@
24 24 font-family: Arial;
25 25 border: 1px solid @border-color-base;
26 26 border-radius: @btn-border-radius;
27   - transition: all @transition-time @ease-in-out;
  27 + //transition: all @transition-time @ease-in-out;
  28 + transition: border @transition-time @ease-in-out, color @transition-time @ease-in-out;
28 29  
29 30 a {
30 31 margin: 0 6px;
... ...