feat: publicize doc implemetation
This commit is contained in:
41
one/docs/demo/button-group/size.vue
Normal file
41
one/docs/demo/button-group/size.vue
Normal file
@@ -0,0 +1,41 @@
|
||||
<template>
|
||||
<article>
|
||||
<veui-button-group ui="xl">
|
||||
<veui-button>Undo</veui-button>
|
||||
<veui-button>Redo</veui-button>
|
||||
</veui-button-group>
|
||||
<veui-button-group ui="l">
|
||||
<veui-button>Undo</veui-button>
|
||||
<veui-button>Redo</veui-button>
|
||||
</veui-button-group>
|
||||
<veui-button-group ui="m">
|
||||
<veui-button>Undo</veui-button>
|
||||
<veui-button>Redo</veui-button>
|
||||
</veui-button-group>
|
||||
<veui-button-group ui="s">
|
||||
<veui-button>Undo</veui-button>
|
||||
<veui-button>Redo</veui-button>
|
||||
</veui-button-group>
|
||||
<veui-button-group ui="xs">
|
||||
<veui-button>Undo</veui-button>
|
||||
<veui-button>Redo</veui-button>
|
||||
</veui-button-group>
|
||||
</article>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { Button, ButtonGroup } from 'veui'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
'veui-button': Button,
|
||||
'veui-button-group': ButtonGroup
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped docs>
|
||||
.veui-button-group {
|
||||
margin-right: 1em;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user