1.2.1 • Published 3 years ago

universal-alert v1.2.1

Weekly downloads
18
License
BSD-3-Clause
Repository
-
Last release
3 years ago

title: alert

alert

npm

Alert component for feedback.

Support

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

PropertyTypeDescriptionDefaultSupported
optionsobjectalert arguments-
options.titlestringalert title,support only in mini app-
options.contentstringalert content-
options.buttonTextstringalert button text,web environments are not supported-

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>
);