vue-ios-alertview
Vue port of angular-ios-alertview.
iOS7+ style alertview service for Vue.
Install
npm install vue-ios-alertview
Dependences
Promise
Usage
import Vue from 'vue';
import iosAlertView from 'vue-ios-alertview';
Vue.use(iosAlertView);
new Vue({
el: '#container',
methods: {
alert: function(){
this.$iosAlert('alert').then(function(){
console.log('alert);
});
}
}
});
Options
(Note: some options are specific to different alertview type, e.g. remindDuration is only for $iosRemind).
title, alertview title, default emptytext, alertview content, support html string. default emptyinput, whether show input form, default falseplaceholder, input field placeholder, default emptycancelText, cancel button text, defaultCancelokText, ok button text, defaultOKremindDuration, remind show duration, default 650msbuttons, array of button object.an example of button object
{ text: 'OK', bold: true, onClick: function(data){ // data.index // data.button // data.value } }defaultOption, the option key if you just pass in a string when you invoke$iosAlert,$iosConfirm,$iosPromptor$iosRemind. defaulttext, you can set it totitleor something else.
License
MIT