mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-02 11:17:46 +08:00
42 lines
1020 B
Vue
42 lines
1020 B
Vue
<template>
|
|
<el-space direction="vertical">
|
|
<el-space>
|
|
<el-input-number v-model="num" />
|
|
<el-input-number v-model="num">
|
|
<template #decrease-icon>
|
|
<el-icon>
|
|
<ArrowDown />
|
|
</el-icon>
|
|
</template>
|
|
<template #increase-icon>
|
|
<el-icon>
|
|
<ArrowUp />
|
|
</el-icon>
|
|
</template>
|
|
</el-input-number>
|
|
</el-space>
|
|
<el-space>
|
|
<el-input-number v-model="num" controls-position="right" />
|
|
<el-input-number v-model="num" controls-position="right">
|
|
<template #decrease-icon>
|
|
<el-icon>
|
|
<Minus />
|
|
</el-icon>
|
|
</template>
|
|
<template #increase-icon>
|
|
<el-icon>
|
|
<Plus />
|
|
</el-icon>
|
|
</template>
|
|
</el-input-number>
|
|
</el-space>
|
|
</el-space>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
import { ArrowDown, ArrowUp, Minus, Plus } from '@element-plus/icons-vue'
|
|
|
|
const num = ref(1)
|
|
</script>
|