Skip to content

alanchenchen/vue2-dialog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

00fc3ae · Dec 21, 2018

History

15 Commits
Oct 16, 2018
Oct 16, 2018
Oct 16, 2018
Oct 16, 2018
Oct 16, 2018
Oct 16, 2018
Oct 16, 2018
May 15, 2018
Dec 21, 2018
Dec 14, 2017
Oct 16, 2018
Dec 14, 2017
Oct 16, 2018

Repository files navigation

vue2-dialog

A mobile Vue plugin for Dialog

pluginName: vue2-dialog

version: 1.1.0

author: Alan Chen

github: alanchenchen@github.com

date: 2018/10/15

This plugin is just only adapted for mobile.Please use the rem layout

Please go to the release to see version logs.

What you can do with the plugin

  • You can use it to make several kinds of dialog components such as Alert,Confirm,ActionSheet,Toast.And you can also use the components like CascadingPicker,Loading and Scroller

dialog

中文文档

How to use

  • NPM install the vue2-dialog plugin
	yarn add vue2-dialog or npm install vue2-dialog --save

1.vue spa

  • import the plugin and use (global use)
import VueDialog from 'vue2-dialog'
import 'vue2-dialog/dist/VueDialog.css'

Vue.use(VueDialog)
  • import some components that you need and use (local use)
import { Scroller, Alert, Confirm } from 'vue2-dialog'
import 'vue2-dialog/dist/VueDialog.css'

Vue.component(Scroller.name, Scroller)
Vue.component(Alert.name, Alert)
Vue.component(Confirm.name, Confirm)

2.script html

  • directly write the script,in deed you have to insert the vue.js script firstly
<link href="node_modules/vue2-dialog/dist/VueDialog.css"></link>
<script src="node_modules/vue2-dialog/dist/VueDialog.js"></script>
  • use the components directly in your vue spa file or the Vue instance ,like
<Alert />
<Confirm />
<Toast />
<Scroller />
...

Components Docs