I have a parent layout component for my Vue app which renders various child components, based on Vue router. I want to give some child components padding, but not others. How can I do this? Obviously, one way is to just apply the padding in the child components themselves, but this means lots of duplication of the padding code. What I'd really like is some way for the child component to tell the parent component whether it needs padding before rendering, so the parent component can apply the padding or not before it renders.