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>
|