# Pairwise Value
```html
```
```js
export default {
data () {
return {
placeholder: ['From', 'To'],
value: ['0', '100']
}
},
methods: {
handleInputBlur () {
this.$NMessage.info('Pairwise Value:Blur')
},
handleInputFocus () {
this.$NMessage.info('Pairwise Value:Focus')
},
handleInputInput () {
this.$NMessage.info('Pairwise Value:Input')
},
handleInputChange () {
this.$NMessage.info('Pairwise Value:Change')
}
}
}
```
```css
.n-input {
margin-bottom: 8px;
}
```