mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* docs: improve examples layout for narrow screens * docs: style related * style: [statistic] use utilities * style: [input] remove deep * style: [transitions] change style * refactor: [date-picker-panel] narrow refactor
16 lines
348 B
Vue
16 lines
348 B
Vue
<template>
|
|
<div class="flex flex-wrap items-center gap-4">
|
|
<el-input-number v-model="num1" size="large" />
|
|
<el-input-number v-model="num2" />
|
|
<el-input-number v-model="num3" size="small" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const num1 = ref(1)
|
|
const num2 = ref(2)
|
|
const num3 = ref(3)
|
|
</script>
|