Guest User

Untitled

a guest
Oct 18th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <template>
  2. <div class="wrapper" v-html="content"></div>
  3. </template>
  4.  
  5. <script>
  6. export default {
  7. data() {
  8. return {
  9. content: 'this is a <a>Test</a>',
  10. }
  11. },
  12. }
  13. </script>
  14.  
  15. <style scoped lang="scss">
  16. .wrapper >>> a {
  17. color: red;
  18. }
  19. </style>
Add Comment
Please, Sign In to add comment