iview/examples/routers/page.vue

17 lines
314 B
Vue
Raw Normal View History

2016-09-09 14:29:19 +08:00
<template>
2017-03-07 10:32:46 +08:00
<div>
2017-04-05 11:24:00 +08:00
<Page :total="100" :current="current"></Page>
{{ current }}
<Button @click="current = 1">set current</Button>
2017-03-07 10:32:46 +08:00
</div>
2016-09-09 14:29:19 +08:00
</template>
<script>
export default {
2017-04-05 11:24:00 +08:00
data () {
return {
current: 2
}
}
2016-09-09 14:29:19 +08:00
}
2016-10-28 17:24:52 +08:00
</script>