Gathering detailed insights and metrics for muse-ui-loading
Gathering detailed insights and metrics for muse-ui-loading
npm install muse-ui-loading
Typescript
Module System
Node Version
NPM Version
57.4
Supply Chain
98
Quality
75
Maintenance
50
Vulnerability
100
License
Verify real, reachable, and deliverable emails with instant MX records, SMTP checks, and disposable email detection.
Total Downloads
60,581
Last Day
6
Last Week
44
Last Month
389
Last Year
7,628
Minified
Minified + Gzipped
Latest Version
0.2.0
Package Id
muse-ui-loading@0.2.0
Unpacked Size
61.16 kB
Size
15.09 kB
File Count
14
NPM Version
5.6.0
Node Version
8.6.0
Cumulative downloads
Total Downloads
Last Day
-33.3%
6
Compared to previous day
Last Week
-48.2%
44
Compared to previous week
Last Month
24.7%
389
Compared to previous month
Last Year
-53.1%
7,628
Compared to previous year
1
28
Muse-UI plugin loading
1npm install -S muse-ui-loading 2// or 3yarn add muse-ui-loading
1<link rel="stylesheet" href="https://unpkg.com/muse-ui-loading/dist/muse-ui-loading.all.css"/> 2<script src="https://unpkg.com/muse-ui-loading/dist/muse-ui-loading.js"></script>
1import 'muse-ui-loading/dist/muse-ui-loading.css'; // load css 2import Vue from 'vue'; 3import MuseUILoading from 'muse-ui-loading'; 4Vue.use(MuseUILoading); 5 6new Vue({ 7 methods: { 8 loading () { 9 const loading = this.$loading({ 10 // ...options 11 }); 12 setTimeout(() => { 13 loading.close(); 14 }, 3000) 15 } 16 } 17}); 18 19// or 20const loading = MuseUILoading({ 21 // ...options 22}); 23setTimeout(() => { 24 loading.close(); 25}, 3000)
use v-loading
in element, use data-mu-loading-*
set option
1<div v-loading="true" data-mu-loading-overlay-color="rgba(0, 0, 0, .6)" style="position: relative; width: 500px; height: 400px;"></div>
element position
is cant
static`;
Vue.use(MuseUILoading, config)
change default config
1{ 2 overlayColor: 'hsla(0,0%,100%,.9)', // overlay color 3 size: 48, // circle progress size 4 color: 'primary', // color 5 className: '' // loading class name 6}
No vulnerabilities found.
No security vulnerabilities found.