Vue Nuxt
Tips & Tricks

A collection of Vue, Nuxt and Vite tips, tricks and good practices.

In Vue, you can use any dynamic value directly in your `<style>` thanks to the `v-bind` directive. It is fully reactive.

<style scoped>
button {
  background-color: v-bind(backgroundColor);
}
</style>