🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@fouro/elx-v2

Package Overview
Dependencies
Maintainers
6
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fouro/elx-v2 - npm Package Compare versions

Comparing version
1.0.24
to
1.0.25
+1
-1
package.json
{
"name": "@fouro/elx-v2",
"version": "1.0.24",
"version": "1.0.25",
"description": "element-ui components",

@@ -5,0 +5,0 @@ "main": "index.js",

<template>
<el-input v-model="inputValue" :placeholder="$t('component.numberField.placeholder')" @blur="handleBlur" :clearable="clearable" @clear="handleClear">
<el-input
v-model="inputValue"
:placeholder="$t('component.numberField.placeholder')"
@blur="handleBlur"
:clearable="clearable"
@clear="handleClear">
</el-input>

@@ -43,3 +48,4 @@ </template>

if (typeof this.inputValue != 'number') {
this.inputValue = Number(this.inputValue)
let value = Number(this.inputValue)
this.inputValue = isNaN(value) ? null : value
}

@@ -46,0 +52,0 @@ }