fixed #21
This commit is contained in:
梁灏 2016-10-10 09:08:20 +08:00
parent 93efaba8f8
commit 4935594e4e
3 changed files with 9 additions and 6 deletions

View file

@ -7,13 +7,15 @@
<Button @click="warning">warning</Button>
<Button @click="error">error</Button>
<Button @click="confirm">confirm</Button>
<Page :total="11" :page-size="11"></Page>
<Page :total="11" size="small"></Page>
<Page :current="1" :total="0" simple></Page>
</template>
<script>
import { Modal, Button, Message } from 'iview';
import { Modal, Button, Message, Page } from 'iview';
export default {
components: { Modal, Button },
components: { Modal, Button, Page },
props: {
},