1.0.4 • Published 5 years ago

vuejs-toasts v1.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Installation

npm i vuejs-toasts --save

Usage

//main.js
import Toast from 'vuejs-toasts';
Vue.use(Toast);

//.vue files
/*show component*/
this.$toast.show({text: 'hello world'});
/*close component*/
this.$toast.close();

Preview

this.$toast.show({
    text: 'hello world!',
    type: 'info'
});

vuejs-toasts

Option

use option to custom the component. option is an object. Use option in the following ways:

  • Set option once.
this.$toast.show(option);
  • Set option globally, the next time you show the component, option would still be effective.
Vue.use(Toast, option);

option available:

keytypedefaultdescription
textstringtoast text
typestring"normal"type of toast, can be "normal", "success", "fail" or "info"
maskbooleantruewhether to show a fullscreen,transparent mask
callbackfunctionfunction to call when toast is closed
durationnumber2000auto close time, 1000 = 1 second;

License

The MIT License

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago