PHP Classes

File: src/components/pagination/PaginationLoader.vue

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   WP Emailer   src/components/pagination/PaginationLoader.vue   Download  
File: src/components/pagination/PaginationLoader.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: WP Emailer
Allow WordPress users to configure email settings
Author: By
Last change:
Date: 1 year ago
Size: 606 bytes
 

Contents

Class file image Download
<template> <div class="pagination-loading flex justify-between mt-10"> <div> <SkeletonText width="150px" /> </div> <div class="flex"> <SkeletonText width="60px" /> <SkeletonText width="60px" /> </div> </div> </template> <script> import SkeletonText from "../skeleton/SkeletonText.vue"; export default { name: "PaginationLoader", components: { SkeletonText, }, }; </script> <style lang="scss" scoped> .pagination-loading { .skeleton-text { height: 1.5rem; } .flex { .skeleton-text { margin-right: 5px; } } } </style>