1.1.9 • Published 5 years ago

vue-alert-mobile v1.1.9

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

vue-alert

移动端H5 Vue alert插件

Introduction

移动端H5 Vue alert插件,使用vw实现移动端适配。

Useage

Params

```name	            type	    default	   description
```title  	        string		'提示'      标题
```content          string		            内容
```buttonText       string	    '确定'    	按钮文字
```buttonTextColor	string	    '#f56a39'	按钮文字颜色
```onShow	        function		        显示时的回调
```onHide	        function		        隐藏时的回调
import VueAlert   from 'vue-alert-mobile'

//and register the plugin on vue.

Vue.use(VueAlert)


// 组件中使用
this.$alert.show({
          title: '提示',
          content: 'alert content',
          buttonText: '确定',
          buttonTextColor: '#f56a39',
          onShow() {
            console.log('show');
          },
          onHide() {
            console.log('hide');
          }
        })
1.1.9

5 years ago

1.1.8

5 years ago

1.1.7

5 years ago

1.1.6

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

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