-
Is it possible to set a class on This is more of a Vue question but you seem to know your way around so I figured I'd ask here first. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi Idan 😃 Unless the Scoped styles allow you to target elements rendered in the component, or in any direct children component root elements, so both of the scenarios you mentioned work in Vue. Feel free to provide more details about the specific scenario. |
Beta Was this translation helpful? Give feedback.
Hi Idan 😃
Unless the
<Image>
component usesinheritAttrs: false
, any classes that you pass to it will be added to the root element, so it should be applied just as before.Scoped styles allow you to target elements rendered in the component, or in any direct children component root elements, so both of the scenarios you mentioned work in Vue.
Feel free to provide more details about the specific scenario.