universal-alert

v1.2.1
Alert component for feedback.
Rax


title: alert

alert

npm

Alert component for feedback.

Support

browser weex miniApp wechatMiniprogram quickApp bytedanceMicroApp

Install

$ npm install universal-alert --save

Usage

import alert from 'universal-alert';

// How to use it in quickapp
// import Alert from 'universal-alert/lib/quickapp;

alert({
  title: 'alert title',
  content: 'alert content',
  buttonText: 'button text,default value is confirm'
}).then(() => {
  console.log('confirm');
});

You can also import from the big package:

import { alert } from 'universal-api';

Methods

Alert(options)

Arguments

Property Type Description Default Supported
options object alert arguments -
options.title string alert title,support only in mini app - miniApp wechatMiniprogram quickApp bytedanceMicroApp
options.content string alert content -
options.buttonText string alert button text,web environments are not supported - weex miniApp wechatMiniprogram quickApp bytedanceMicroApp

Attention

Options that only supported by WeChat MiniProgram like confirmColor can also be passed but will not effect in other miniapp platforms.

/**
 * iframe: true
 */
import React from 'react';
export default () => (
  <iframe style={{
      boxShadow: '0 2px 15px rgba(0,0,0,0.1)',
      width: '375px',
      height: '700px'
    }} src='https://herbox.online/p/109000004/app_1aKtEd7SK?previewZoom=100&view=preview&defaultPage=pages/universal-alert/index&topSlider=false'></iframe>
);
wechat miniprogram

Metadata

Downloads