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

9 lines
310 B
Vue
Raw Normal View History

2017-11-03 10:46:18 +00:00
<template>
<div :style="{ background: 'rgb(190, 200, 200)', padding: '26px 16px 16px' }">
2018-01-23 10:55:39 +00:00
<a-button type="primary" ghost>Primary</a-button>
<a-button ghost>Default</a-button>
<a-button type="dashed" ghost>Dashed</a-button>
<a-button type="danger" ghost>danger</a-button>
2017-11-03 10:46:18 +00:00
</div>
</template>