# Passively Activateds
If you want to activate input by pressing enter after focused, use `passively-activated`. (Use tab key to focus on the inputs)
```html
```
```js
export default {
data() {
return {
value: null,
pair: null
}
},
methods: {
handleFocus(e) {
this.$NMessage.info('[Event focus]')
},
handleBlur(e) {
this.$NMessage.info('[Event blur]')
},
handleChange(v) {
this.$NMessage.info('[Event change]: ' + v)
},
handleKeyUp(e) {
this.$NMessage.info('[Event keyup]')
},
handleInput(v) {
this.$NMessage.info('[Event input]: ' + v)
}
}
}
```
```css
.n-input {
margin-bottom: 8px;
}
```