Forwarded from Душный Вуй
#vue #vue3 #sfc #css
В Vue 3 появилась отличная фишка. Вы можете устанавливать значения CSS в Single File Component прямо из переменных. Проще говоря вот так:
Подробнее в документации:
https://vuejs.org/api/sfc-css-features.html#v-bind-in-css
В Vue 3 появилась отличная фишка. Вы можете устанавливать значения CSS в Single File Component прямо из переменных. Проще говоря вот так:
<template>
<div class="text">hello</div>
</template>
<script>
export default {
data() {
return {
color: 'red'
}
}
}
</script>
<style>
.text {
color: v-bind(color);
}
</style>
Значения можно подставлять как и из data, так и из props, и даже из computed.Подробнее в документации:
https://vuejs.org/api/sfc-css-features.html#v-bind-in-css
How to create a debounced ref in Vue 3 using Composition API
https://theroadtoenterprise.com/blog/how-to-create-a-debounced-ref-in-vue-3-using-composition-api
#кодинг
#vue
#vue3
https://theroadtoenterprise.com/blog/how-to-create-a-debounced-ref-in-vue-3-using-composition-api
#кодинг
#vue
#vue3
The Road To Enterprise Blog
How to create a debounced ref in Vue 3 using Composition API
Composition API offers a ref to create a reactive value. But what if we would like the state updated to be delayed? In this article we cover how to create a debounced ref.