For further actions, you may consider blocking this person and/or reporting abuse
Read next
Simplify Your Dropdown Management with populateDropdown
Mansuur Abdullahi Abdirahman -
🚀 Your Daily Crypto Job Digest For 18 November!! 🚀
Web3 Hires -
AI Creates Digital Twins of 1,000 People with 85% Accuracy in Behavioral Predictions
Mike Young -
Personal TODO list on how I set up my dev machine
Vincenzo -
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!