iview/examples/routers/page.vue

15 lines
276 B
Vue
Raw Normal View History

2016-09-09 14:29:19 +08:00
<template>
2017-04-27 17:35:47 +08:00
<div style="margin: 100px;">
2017-06-30 16:51:28 +08:00
<Page :total="100" :current="val" show-sizer placement="top"></Page>
2017-03-07 10:32:46 +08:00
</div>
2016-09-09 14:29:19 +08:00
</template>
<script>
export default {
2017-06-30 16:51:28 +08:00
data () {
return {
val: 2
}
}
2016-09-09 14:29:19 +08:00
}
2016-10-28 17:24:52 +08:00
</script>