ItSolutionStuff.com

Vue JS Get Dropdown Selected Value Example

By Hardik Savani • November 5, 2023
Vue.JS

In this post, i will let you know how to get selected option value of dropdown in vue js. you can get select box selected value using vuejs onchange event. bellow example you will understand how to get dropdown selected value in vue js.

We can get selected value of select box using onchange event in vue.js. we will create one vue js function that will call with on change of select box option. you can see bellow full example, that will help you to understand how works onchange event to get value of selected option.

You can see bellow full example:

Example:

<!DOCTYPE html>

<html>

<head>

<title>Vue JS Get Dropdown Selected Value Example - ItSolutionStuff.com</title>

<script src="https://cdn.jsdelivr.net/npm/vue"></script>

</head>

<body>

<div id="app">

<select name="category_id" @change="onChange($event)" class="form-control">

<option>--- Select Category ---</option>

<option value="1">PHP</option>

<option value="2">Laravel</option>

<option value="3">Codeigniter</option>

<option value="4">Vue JS</option>

<option value="5">Angular JS</option>

</select>

</div>

<script type="text/javascript">

var app = new Vue({

el: '#app',

methods: {

onChange(event) {

console.log(event.target.value);

}

}

})

</script>

</body>

</html>

Output:

2

3

I hope it can help you...

Tags: Vue.JS
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Use Ternary Operator in Vue JS?

Read Now →

Vue JS Get Dropdown Selected Value Example

Read Now →

How to Get String Length in Vue JS?

Read Now →

Laravel Vue Dependent Dropdown Example

Read Now →

How to Convert String to Array in Vue JS?

Read Now →

Vue JS Get Array Length or Object Length Example

Read Now →

Vue JS Call a Function On Load Example

Read Now →

Laravel Vue JS File Upload Example

Read Now →

Vue JS Ajax Form Submit Example Code

Read Now →

How to Get Current Date and Time in Vue JS?

Read Now →

Laravel Vue Datatables Component Example

Read Now →

How to Change Date Format using Moment in Vue JS?

Read Now →

How to Replace String in Vue JS?

Read Now →