<div id="app">
  <a :href="link.href" :target="link.target" class="bigFontSize">{{ link.content }}</a>
</div>
.bigFontSize {
  font-size: 30px;
}
;(function(){
  let vm = new Vue({
    el: '#app',
    data: {
      link: {
        href: 'https://www.google.com/',
        target: '_black',
        content: 'Google'
      }
    }
  })
})()

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.11/vue.min.js