Logo white

other / mew-iview

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • mew-iview
  • examples
  • routers
  • page.vue
  • fixed #583
    713bd3d7
    梁灏 authored
    2017-04-05 11:24:00 +0800  
    Browse Code »
page.vue 314 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<template>
    <div>
        <Page :total="100" :current="current"></Page>
        {{ current }}
        <Button @click="current = 1">set current</Button>
    </div>
</template>
<script>
    export default {
        data () {
            return {
                current: 2
            }
        }
    }
</script>