mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
27 lines
418 B
Vue
27 lines
418 B
Vue
<template>
|
|
<div>
|
|
<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>
|
|
<a-button type="primary">
|
|
按钮
|
|
</a-button>
|
|
<a-button type="link">
|
|
Link
|
|
</a-button>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Demo',
|
|
};
|
|
</script>
|