docs_vue2/one/docs/demo/button/size.vue
2021-09-15 20:03:51 +08:00

36 lines
469 B
Vue

<template>
<article>
<veui-button ui="xl">
xl
</veui-button>
<veui-button ui="l">
l
</veui-button>
<veui-button ui="m">
m
</veui-button>
<veui-button ui="s">
s
</veui-button>
<veui-button ui="xs">
xs
</veui-button>
</article>
</template>
<script>
import { Button } from 'veui'
export default {
components: {
'veui-button': Button
}
}
</script>
<style lang="less" scoped>
.veui-button {
margin-right: 1em;
}
</style>