docs_vue2/one/docs/demo/input/size.vue

40 lines
528 B
Vue
Raw Normal View History

2020-08-13 11:47:56 +08:00
<template>
<article>
<section>
2020-08-13 11:47:56 +08:00
<veui-input
ui="l"
value="Large"
/>
</section>
<section><veui-input value="Normal"/></section>
<section>
2020-08-13 11:47:56 +08:00
<veui-input
ui="s"
value="Small"
/>
</section>
<section>
2020-08-13 11:47:56 +08:00
<veui-input
ui="xs"
value="Extra small"
/>
</section>
2020-08-13 11:47:56 +08:00
</article>
</template>
<script>
import { Input } from 'veui'
export default {
components: {
'veui-input': Input
}
}
</script>
2021-09-15 20:03:51 +08:00
<style lang="less" scoped>
section {
2020-08-13 11:47:56 +08:00
margin-bottom: 1em;
}
</style>