# Button 按钮1
# 引入
import Vue from 'vue';
import { Button} from 'momo-ui';
Vue.use(Button);
# 基础用法
888
888
888
888
<mo-button>默认按钮</mo-button>
<mo-button type="primary">主要按钮</mo-button>
<mo-button type="error">错误按钮</mo-button>
<mo-button :disabled="true">禁用按钮</mo-button>
# 不同尺寸
888
888
<mo-button size="large">大型按钮</mo-button>
<mo-button size="small">小型按钮</mo-button>
# 加载中
888
<mo-button type="primary" loading>加载按钮</mo-button>
# 图标按钮
888
<mo-button type="primary" icom="loading"></mo-button>
# Attributes
参数 | 说明 | 类型 | 可选值 | 默认值 | 必填 |
---|---|---|---|---|---|
type | 类型 | String | primary / success / warning / danger / info / text | — | no |
size | 大小 | String | large/medium/small | medium | no |
loading | 加载中 | Boolean | true/false | false | no |
disabled | 禁用 | Boolean | true/false | false | no |
icon | 图标类名 | String | 参见Icon组件 | — | no |
2222
← autton 按钮 Button 按钮1 →