Skip to content

Instantly share code, notes, and snippets.

@adi518
Forked from bengry/Uppercase.vue
Last active January 20, 2018 17:50
Show Gist options
  • Save adi518/68148a36e3139c39eb864072158c3aa1 to your computer and use it in GitHub Desktop.
Save adi518/68148a36e3139c39eb864072158c3aa1 to your computer and use it in GitHub Desktop.
// 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