<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'
}
}
})
})()
This Pen doesn't use any external CSS resources.