index.vue 360 B

12345678910111213141516171819202122
  1. <template>
  2. <div class="admin-hangyezixun">
  3. <myPagination />
  4. </div>
  5. </template>
  6. <script>
  7. import myPagination from './components/Pagination.vue';
  8. export default {
  9. name: 'index',
  10. components: {
  11. myPagination,
  12. },
  13. };
  14. </script>
  15. <style lang="scss" scoped>
  16. .admin-hangyezixun {
  17. }
  18. </style>