11 lines
235 B
Vue
11 lines
235 B
Vue
|
|
<template>
|
||
|
|
<div>
|
||
|
|
<a-date-picker style="width: 200px" />
|
||
|
|
<a-pagination :total="50" show-total show-jumper show-page-size />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup lang="ts"></script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped></style>
|