-
-
Save adi518/68148a36e3139c39eb864072158c3aa1 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
// Uppercase.vue | |
<template> | |
<div> | |
<slot v-bind="{style: style}" /> | |
</div> | |
</template> | |
<script> | |
export default { | |
data() { | |
return { | |
style: { | |
textTransform: 'uppercase' | |
} | |
} | |
} | |
} | |
</script> | |
// App.vue | |
<app> | |
<uppercase> | |
<template slot-scope="attrs"> | |
<span :style="attrs.style"> | |
hello world | |
</span> | |
</template> | |
</uppercase> | |
</app> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment