1.0.0 • Published 5 years ago

@chunhui/ng-alert v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

UTILS

安装

npm 安装

$ npm install @chunhui/alert

yarn 安装

$ yarn add @chunhui/alert

使用

private alert: AlertService

this.alert.create({
  title: 'Title',
  message: 'This is message'
  buttons: [
    {
      text: 'Submit'
      handler: () => console.log('on submit')
    },
    {
      text: 'Cancel'
    }
  ]
})