Skip to content

Instantly share code, notes, and snippets.

@NickyMeuleman
Created April 15, 2020 15:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NickyMeuleman/e1d6ec4aeef9ca326b132c8e1bbb6b01 to your computer and use it in GitHub Desktop.
Save NickyMeuleman/e1d6ec4aeef9ca326b132c8e1bbb6b01 to your computer and use it in GitHub Desktop.
<template>
<div>
<!-- these two links are identical -->
<a v-bind:href="twitter">@NMeuleman</a>
<a :href="twitter">@NMeuleman</a>
</div>
</template>
<script>
export default {
data() {
return {
twitter: "https://twitter.com/NMeuleman",
};
},
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment