mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
35 lines
598 B
Vue
35 lines
598 B
Vue
<template>
|
|
<el-input-number
|
|
v-model="num"
|
|
:min="1"
|
|
:max="10"
|
|
controls-position="right"
|
|
size="large"
|
|
@change="handleChange"
|
|
/>
|
|
<el-input-number
|
|
v-model="num"
|
|
class="mx-4"
|
|
:min="1"
|
|
:max="10"
|
|
controls-position="right"
|
|
@change="handleChange"
|
|
/>
|
|
<el-input-number
|
|
v-model="num"
|
|
:min="1"
|
|
:max="10"
|
|
size="small"
|
|
controls-position="right"
|
|
@change="handleChange"
|
|
/>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const num = ref(1)
|
|
const handleChange = (value: number) => {
|
|
console.log(value)
|
|
}
|
|
</script>
|