Skip to content

Vue 2, how to use a prop as the class name

Sometimes you pass a prop to a component, and you want to use that prop value as the class name. How to do that?

Say you have a Car component.

You want to add a class to its output based on a prop.

So maybe the prop is called color, and you use it like this in other parts of the app:

<Car color="red">
<Car color="blue">

In your Car component you first need to declare the color prop:

<script>
export default {
  name: 'Car',
  props: {
    color: String
  }
}
</script>

then you can use it in the template part:

<template>
  <div :class="color"></div>
</template>

If you want to add a car class, plus the class determined by the color prop, you can use this syntax:

<template>
  <div :class="['car', color]"></div>
</template>

Happy coding!


→ Get my Vue.js 2 Handbook

→ I wrote 17 books to help you become a better developer:

  • C Handbook
  • Command Line Handbook
  • CSS Handbook
  • Express Handbook
  • Git Cheat Sheet
  • Go Handbook
  • HTML Handbook
  • JS Handbook
  • Laravel Handbook
  • Next.js Handbook
  • Node.js Handbook
  • PHP Handbook
  • Python Handbook
  • React Handbook
  • SQL Handbook
  • Svelte Handbook
  • Swift Handbook
...download them all now!

Also, JOIN MY CODING BOOTCAMP, an amazing cohort course that will be a huge step up in your coding career - covering React, Next.js - next edition February 2025

Bootcamp 2025

Join the waiting list