Skip to content

Instantly share code, notes, and snippets.

@BrockReece
Last active October 18, 2017 15:31
Show Gist options
  • Save BrockReece/64f692c2a6bf18a63e4a86310e808c11 to your computer and use it in GitHub Desktop.
Save BrockReece/64f692c2a6bf18a63e4a86310e808c11 to your computer and use it in GitHub Desktop.
<template>
<div class="a" v-html="content"></div>
</template>
<script>
export default {
data() {
return {
content: 'this is a <a class="b">Test</a>',
}
},
}
</script>
<style scoped>
.a >>> .b {
color: red;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment