PHP Classes

File: src/components/settings/SettingFormLoading.vue

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   WP Emailer   src/components/settings/SettingFormLoading.vue   Download  
File: src/components/settings/SettingFormLoading.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: 1,171 bytes
 

Contents

Class file image Download
<template> <div class="mt-50"> <SkeletonText width="200px" /> <SkeletonText width="500px" /> <div class="flex w-full mt-50"> <div><SkeletonText width="200px" /></div> <div class="ml-50"> <SkeletonText width="400px" /> </div> </div> <div class="flex w-full mt-20"> <div><SkeletonText width="200px" /></div> <div class="ml-50"> <SkeletonText width="400px" /> </div> </div> <div class="flex w-full mt-20"> <div><SkeletonText width="200px" /></div> <div class="ml-50"> <SkeletonText width="400px" /> </div> </div> <div class="flex w-full mt-50"> <div><SkeletonText width="200px" /></div> <div class="ml-50"> <SkeletonText width="400px" /> </div> </div> <div class="flex w-full mt-20"> <div><SkeletonText width="200px" /></div> <div class="ml-50"> <SkeletonText width="400px" /> </div> </div> </div> </template> <script> import SkeletonText from "../skeleton/SkeletonText.vue"; export default { name: "SettingFormLoading", components: { SkeletonText, }, }; </script>