PHP Classes

File: src/components/chart/BarChartLoading.vue

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   WP Emailer   src/components/chart/BarChartLoading.vue   Download  
File: src/components/chart/BarChartLoading.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: 581 bytes
 

Contents

Class file image Download
<template> <div class="chart-loading-area"> <SkeletonText /> <SkeletonText /> <SkeletonText /> <SkeletonText /> <SkeletonText /> </div> </template> <script> import SkeletonText from '../skeleton/SkeletonText.vue'; export default { name: 'BarChartLoading', components: { SkeletonText } }; </script> <style lang="scss" scoped> .chart-loading-area { margin-top: 20px; border: 1px solid #8080801a; padding: 40px 20px; .skeleton { margin-top: 20px; } .skeleton-text { height: 1.8rem; } } </style>