sj82516 / vue-alertify

altertifyjs wrapper for vue
10 stars 5 forks source link

typo in promptwith title directions #9

Closed rowej83 closed 5 years ago

rowej83 commented 5 years ago

currently is:

promptWithTitle:function(){ this.$alertify.prompt("prompt title""This is prompt", "default value", (evt, value)=> this.$alertify.success("ok: " + value) , () => this.$alertify.error("cancel") ) }

It's missing the comma between "prompt title" and "this is prompt", should be: promptWithTitle:function(){ this.$alertify.prompt("prompt title","This is prompt", "default value", (evt, value)=> this.$alertify.success("ok: " + value) , () => this.$alertify.error("cancel") ) }

yuanchieh-cheng commented 5 years ago

thanks! will update soon

sj82516 commented 5 years ago

fixed readme