Gathering detailed insights and metrics for muse-ui-message
Gathering detailed insights and metrics for muse-ui-message
npm install muse-ui-message
Typescript
Module System
Node Version
NPM Version
59
Supply Chain
97.5
Quality
74.8
Maintenance
50
Vulnerability
99.6
License
Verify real, reachable, and deliverable emails with instant MX records, SMTP checks, and disposable email detection.
Total Downloads
56,603
Last Day
7
Last Week
59
Last Month
401
Last Year
7,536
Minified
Minified + Gzipped
Latest Version
0.2.1
Package Id
muse-ui-message@0.2.1
Unpacked Size
88.43 kB
Size
21.68 kB
File Count
14
NPM Version
6.1.0
Node Version
10.4.1
Cumulative downloads
Total Downloads
Last Day
16.7%
7
Compared to previous day
Last Week
-23.4%
59
Compared to previous week
Last Month
37.8%
401
Compared to previous month
Last Year
-49.7%
7,536
Compared to previous year
1
28
Muse-UI plugin message dialog
1npm install -S muse-ui-message 2// or 3yarn add muse-ui-message
1<link rel="stylesheet" href="https://unpkg.com/muse-ui-message/dist/muse-ui-message.all.css"/> 2<script src="https://unpkg.com/muse-ui-message/dist/muse-ui-message.js"></script>
1import 'muse-ui-message/dist/muse-ui-message.css'; 2import Vue from 'vue'; 3import MuseUIMessage from 'muse-ui-message'; 4Vue.use(MuseUIMessage); 5 6new Vue({ 7 methods: { 8 open () { 9 this.$alert('Hello world'); 10 this.$confirm('Hello world ?'); 11 this.$prompt('Input Some I'); 12 } 13 } 14}) 15 16// or 17MuseUIMessage.alert('Hello world'); 18MuseUIMessage.confirm('Hello world ?'); 19MuseUIMessage.prompt('Input Some I'); 20 21// use with router 22 23router.beforeEach(() => { 24 MuseUIMessage.close(); 25});
1export default { 2 successIcon: 'check_circle', // success icon 3 infoIcon: 'info', // info icon 4 warningIcon: 'priority_high', // warning icon 5 errorIcon: 'warning', // error icon 6 iconSize: 24, // icon size 7 width: 350, // dialog width 8 maxWidth: '80%', // dialog max width 9 className: '', // dialog class 10 okLabel: '็กฎๅฎ', // dialog ok label 11 cancelLabel: 'ๅๆถ', // dialog cancel label 12 transition: 'scale' // 'slide-top', 'slide-bottom', 'slide-left', 'slide-right', 'fade', 'scale' 13};
No vulnerabilities found.
No security vulnerabilities found.