feat: publicize doc implemetation

This commit is contained in:
Justineo
2020-08-13 11:47:56 +08:00
parent 55b9b044f2
commit 1e5fcff6ad
372 changed files with 50636 additions and 0 deletions

View File

@@ -0,0 +1,74 @@
<template>
<article>
<section>
<veui-number-input
v-model="value"
:min="0"
:max="100"
/>
</section>
<section>
<veui-checkbox v-model="desc">
Description
</veui-checkbox>
<veui-checkbox
v-model="autoSucceed"
:true-value="200"
>
Autosucceed
</veui-checkbox>
<veui-checkbox
v-model="type"
true-value="circular"
false-value="bar"
>
Circular
</veui-checkbox>
</section>
<section>
<veui-progress
:type="type"
:value="value"
:desc="desc"
:autosucceed="autoSucceed"
:decimal-place="1"
:min="0"
:max="100"
/>
</section>
</article>
</template>
<script>
import { Progress, NumberInput, Checkbox } from 'veui'
export default {
components: {
'veui-progress': Progress,
'veui-number-input': NumberInput,
'veui-checkbox': Checkbox
},
data () {
return {
type: 'bar',
value: 66.6,
desc: true,
autoSucceed: true
}
}
}
</script>
<style lang="less" scoped docs>
section + section {
margin-top: 20px;
}
section:last-child {
height: 140px;
}
.veui-checkbox {
margin-right: 15px;
}
</style>