mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-17 13:01:46 +08:00
chore(components): remove deprecated 2.8.0 (#17735)
* chore(components): remove deprecated 2.8.0 * chore(components): update
This commit is contained in:
@ -43,7 +43,7 @@
|
||||
:readonly="readonly"
|
||||
:autocomplete="autocomplete"
|
||||
:tabindex="tabindex"
|
||||
:aria-label="label || ariaLabel"
|
||||
:aria-label="ariaLabel"
|
||||
:placeholder="placeholder"
|
||||
:style="inputStyle"
|
||||
:form="form"
|
||||
@ -123,7 +123,7 @@
|
||||
:readonly="readonly"
|
||||
:autocomplete="autocomplete"
|
||||
:style="textareaStyle"
|
||||
:aria-label="label || ariaLabel"
|
||||
:aria-label="ariaLabel"
|
||||
:placeholder="placeholder"
|
||||
:form="form"
|
||||
:autofocus="autofocus"
|
||||
@ -185,7 +185,6 @@ import {
|
||||
useAttrs,
|
||||
useComposition,
|
||||
useCursor,
|
||||
useDeprecated,
|
||||
useFocusController,
|
||||
useNamespace,
|
||||
} from '@element-plus/hooks'
|
||||
@ -517,17 +516,6 @@ onMounted(() => {
|
||||
nextTick(resizeTextarea)
|
||||
})
|
||||
|
||||
useDeprecated(
|
||||
{
|
||||
from: 'label',
|
||||
replacement: 'aria-label',
|
||||
version: '2.8.0',
|
||||
scope: 'el-input',
|
||||
ref: 'https://element-plus.org/en-US/component/input.html',
|
||||
},
|
||||
computed(() => !!props.label)
|
||||
)
|
||||
|
||||
defineExpose({
|
||||
/** @description HTML input element */
|
||||
input,
|
||||
|
Reference in New Issue
Block a user