Created
May 23, 2017 14:11
-
-
Save Symfomany/5276e30d7e11b8771caa8691cad05d15 to your computer and use it in GitHub Desktop.
This file contains hidden or 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