1👍
✅
Make the styles scoped in order to be unique for each layout:
<template>
<AppHeader />
<slot />
</template>
<style scoped>
.header-wrapper {
background: red;
}
</style>
and
<template>
<AppHeader />
<slot />
</template>
<style scoped>
.header-wrapper {
background: blue;
}
</style>
Source:stackexchange.com