antd-mobile-taro-ui
Version:
以antd-mobile为设计标准,基于taro框架的微信小程序组件库
13 lines • 383 B
JavaScript
import "./dialog.css";
import { attachPropertiesToComponent } from 'antd-mobile/es/utils/attach-properties-to-component';
import { show } from './show';
import { alert } from './alert';
import { confirm } from './confirm';
import { clear } from './clear';
import { Dialog } from './dialog';
export default attachPropertiesToComponent(Dialog, {
show,
alert,
confirm,
clear
});