12345678910111213141516171819202122 |
- <template>
- <div class="admin-hangyezixun">
- <myPagination />
- </div>
- </template>
- <script>
- import myPagination from './components/Pagination.vue';
- export default {
- name: 'index',
- components: {
- myPagination,
- },
- };
- </script>
- <style lang="scss" scoped>
- .admin-hangyezixun {
- }
- </style>
|