ant-design-vue/components/button/demo/disabled.vue

16 lines
465 B
Vue
Raw Normal View History

2017-11-03 10:46:18 +00:00
<template>
<div>
2018-01-23 10:55:39 +00:00
<a-button type="primary">Primary</a-button>
<a-button type="primary" disabled>Primary(disabled)</a-button>
2017-11-03 10:46:18 +00:00
<br />
2018-01-23 10:55:39 +00:00
<a-button>Default</a-button>
<a-button disabled>Default(disabled)</a-button>
2017-11-03 10:46:18 +00:00
<br />
2018-01-23 10:55:39 +00:00
<a-button>Ghost</a-button>
<a-button disabled>Ghost(disabled)</a-button>
2017-11-03 10:46:18 +00:00
<br />
2018-01-23 10:55:39 +00:00
<a-button type="dashed">Dashed</a-button>
<a-button type="dashed" disabled>Dashed(disabled)</a-button>
2017-11-03 10:46:18 +00:00
</div>
</template>