For further actions, you may consider blocking this person and/or reporting abuse
Read next
Vue.js for Beginners 2024 #VueJs Part 6 : State Management with Vuex
KyDev -
Crossing the Finish Line with Nuxt.js: Generating SSR Pages, Sitemaps, and Robots.txt for Your E-Commerce Store
WebCraft Notes -
Separation of Concerns: Rethinking the Blend of HTML, JavaScript, and CSS
Blake Anderson -
Reliable Component Testing with Vitest's Browser Mode and Playwright
Maya Shavin 🌷☕️🏡 -
Top comments (1)
We have a vue js page, template and style tag. Example
v-text-field(v-model="")
And we want to customize input in (v-text-field)
View render in HTML
thepracticaldev.s3.amazonaws.com/i...
with we can't handle it. And with <style lang="stylus"> it will affect to other input, because not scoped's global style.<br> Solution<br> we will set class to v-text-field, example: v-text-field(v-model="", class="<em>input</em>_text")<br> Now, we can set style for it with global style.</p> <style lang="stylus"> _input__text div input background-color: red;
Thanks!