Created
May 23, 2017 14:11
-
-
Save Symfomany/6552e474bbf32f80bfec093d18220c0b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="wrapper"> | |
<comp-b>...</comp-b> | |
</div> | |
</template> | |
<script> | |
import CompB from 'xxx/CompB' | |
export default { | |
components: { | |
CompB | |
} | |
} | |
</script> | |
<style> | |
.wrapper .compb-header { | |
color: red; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment