🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@dwqs/vue-toast

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dwqs/vue-toast

A toast component for vue.js

latest
Source
npmnpm
Version
2.1.5
Version published
Maintainers
1
Created
Source

Overview

A toast component written with Vue, designed based on Ant Design.


vue-toast 1.x deprecated

Show Cases

On pc:

toast-pc

On mobile:

toast-mobile

Installation

First, install vue-toast from npm:

npm install @dwqs/vue-toast --save-dev

Or in package.json:

"dependencies": {
  "@dwqs/vue-toast": "version"
}

Then use it:

//CommonJS
var Toast = require('@dwqs/vue-toast');

Usage

Basically you can pass a string to Toast:

Toast.info('this is a example');

Or invoke Toast with an object as its configuration:

Toast.info({
  message: 'this is a example',
  duration: 5000
});

API

OpthionDescription
Toast.info(message:String|config:Object)show a info toast
Toast.success(message:String|config:Object)show a success toast
Toast.warn(message:String|config:Object)show a warn toast
Toast.error(message:String|config:Object)show a error toast
Toast.loading(message:String|config:Object)show a loading toast

Configuration

|Opthion|Description|Default| |:--:|:--:|:--:|:--:| |message|a string as the content of the toast|''| |duration|time before the toast vanishes, in millisecond|1500|

If duration is 0, toast won't disappear but you invoke remove:

<button @click="loading"><span>显示加载中...</span></button>

loading() {
  const instance = Toast.loading({
    message:"Action....",
    duration:0
  });
  setTimeout(instance.remove, 2500);
}

This is useful showing loading state for user in async action.

License

MIT

Keywords

toast

FAQs

Package last updated on 13 Dec 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts