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

10 lines
244 B
Vue
Raw Normal View History

2017-11-03 10:46:18 +00:00
// TODO: 依赖组件开发中
<template>
<div>
2018-01-23 10:55:39 +00:00
<a-button type="primary">Primary</a-button>
<a-button>Default</a-button>
<a-button type="dashed">Dashed</a-button>
<a-button type="danger">Danger</a-button>
2017-11-03 10:46:18 +00:00
</div>
</template>