ant-design-vue/examples/App.vue
2020-03-23 11:00:24 +08:00

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>