All Projects → TerryZ → V Dialogs

TerryZ / V Dialogs

Licence: mit
A simple and clean instructional dialog plugin for Vue2, dialog type including Modal, Alert, Mask and Toast

Programming Languages

javascript
184084 projects - #8 most used programming language
es6
455 projects

Projects that are alternatives of or similar to V Dialogs

vue2-dialog
A mobile Vue plugin for VueDialog
Stars: ✭ 21 (-82.64%)
Mutual labels:  alert, dialog, toast, vue2
Heyui
🎉UI Toolkit for Web, Vue2.0 http://www.heyui.top
Stars: ✭ 2,373 (+1861.16%)
Mutual labels:  vue-components, modals, vue2
Jquery Confirm
A multipurpose plugin for alert, confirm & dialog, with extended features.
Stars: ✭ 1,776 (+1367.77%)
Mutual labels:  dialog, alert, modals
Bdialog
Extend the Bootstrap Modal features, making dialog more functions and easier to use, dialog type including modal, alert, mask and toast types
Stars: ✭ 174 (+43.8%)
Mutual labels:  dialog, alert, mask
Sweetalert2
A beautiful, responsive, highly customizable and accessible (WAI-ARIA) replacement for JavaScript's popup boxes. Zero dependencies.
Stars: ✭ 13,929 (+11411.57%)
Mutual labels:  dialog, alert, toast
Razor.SweetAlert2
A Razor class library for interacting with SweetAlert2
Stars: ✭ 98 (-19.01%)
Mutual labels:  alert, dialog, toast
Alerttoast
Create Apple-like alerts & toasts using SwiftUI
Stars: ✭ 151 (+24.79%)
Mutual labels:  dialog, alert, toast
Jh flutter demo
a flutter demo
Stars: ✭ 229 (+89.26%)
Mutual labels:  dialog, alert, toast
Wc Messagebox
基于 Vue 2.0 开发的 Alert, Toast, Confirm 插件, UI仿照 iOS 原生
Stars: ✭ 203 (+67.77%)
Mutual labels:  dialog, alert, toast
BalloonPopup
Forget Android Toast! BalloonPopup displays a round or squared popup and attaches it to a View, like a callout. Uses the Builder pattern for maximum ease. The popup can automatically hide and can persist when the value is updated.
Stars: ✭ 32 (-73.55%)
Mutual labels:  alert, dialog, toast
Vue Snotify
Vuejs 2 Notification Center
Stars: ✭ 755 (+523.97%)
Mutual labels:  vue-components, toast, vue2
Vue Cnode
基于vue2 + vue-router + vuet + ES6 + less + flex.css重写vue版cnode社区,使用webpack2打包
Stars: ✭ 1,134 (+837.19%)
Mutual labels:  vue-components, vue2
React Native Alert Pro
The Pro Version of React Native Alert (Android & iOS)
Stars: ✭ 69 (-42.98%)
Mutual labels:  dialog, alert
Jalert
jQuery alert/modal/lightbox plugin
Stars: ✭ 73 (-39.67%)
Mutual labels:  alert, modals
Ng Popups
🎉 Alert, confirm and prompt dialogs for Angular. Simple as that.
Stars: ✭ 80 (-33.88%)
Mutual labels:  dialog, alert
Vue Lazyload Images
A plugin of lazy-load images for Vue2.x
Stars: ✭ 61 (-49.59%)
Mutual labels:  vue-components, vue2
Vue Particles
Vue.js component for particles backgrounds ✨
Stars: ✭ 1,220 (+908.26%)
Mutual labels:  vue-components, vue2
Alertjs
Dialog Builder allows you to create fully customisable dialogs and popups in Dynamics 365.
Stars: ✭ 80 (-33.88%)
Mutual labels:  dialog, alert
Xcui
🍴 A Vue.js 2.x desktop components colletion
Stars: ✭ 88 (-27.27%)
Mutual labels:  vue-components, vue2
Vue Toastr
Vuejs Toast : Plugin and Component Capability.
Stars: ✭ 93 (-23.14%)
Mutual labels:  toast, vue2

v-dialogs · npm version license npm

A simple and clean instructional dialog plugin for Vue2, dialog type including Modal, Alert, Mask and Toast

Examples and Documentation

Explorer on

The jQuery version: bDialog

The Dialog Icon

The icons in alert dialog used are made by Elegant Themes
The control icon, toast icon used are come from IconFont

Installation

npm i -S v-dialogs

Include plugin in your main.js file.

import Vue from 'vue'
import Dialog from 'v-dialogs'
Vue.use(Dialog, {
  // global config options...
})

Usage

Modal

import Profile from './Profile.vue'

this.$dlg.modal(Profile, {
  width: 400,
  height: 300,
  title: 'User Profile',
  params: {
    userId: 1,
    userName: 'Terry Zeng'
  },
  callback: data => {
    this.$dlg.alert(`Received message: ${data}`)
  }
})

Alert

// alert message
this.$dlg.alert('message')
// alert message with callback
this.$dlg.alert('message', () => { // do somthing })
// alert message with options
this.$dlg.alert('message', { ...options })
// alert message with callaback and options
this.$dlg.alert('message', callback, options)

Mask

const key = this.$dlg.mask('Data loading, please hold on a moment...')

// do some stuff
job().then(resp => {
  // close mark layer when job done
  this.$dlg.close(key)
})

Toast

// show message in corner
this.$dlg.toast('message')
// show message with callback
this.$dlg.toast('message', () => { // do somthing })
// show message with options
this.$dlg.toast('message', { ...options })
// show message with callaback and options
this.$dlg.toast('message', callback, options)

Vue plugin series

Plugin Status Description
v-page npm version A simple pagination bar, including length Menu, i18n support
v-dialogs npm version A simple and powerful dialog, including Modal, Alert, Mask and Toast modes
v-tablegrid npm version A simpler to use and practical datatable
v-uploader npm version A Vue2 plugin to make files upload simple and easier,
you can drag files or select file in dialog to upload
v-ztree npm version A simple tree for Vue2, support single or multiple(check) select tree,
and support server side data
v-gallery npm version A Vue2 plugin make browsing images in gallery
v-region npm version A simple region selector, provide Chinese administrative division data
v-selectpage npm version A powerful selector for Vue2, list or table view of pagination,
use tags for multiple selection, i18n and server side resources supports
v-suggest npm version A Vue2 plugin for input suggestions by autocomplete
v-playback npm version A Vue2 plugin to make video play easier
v-selectmenu npm version A simple, easier and highly customized menu solution
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].