Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lloydjatkinson/206e21c2a0ceaea700dd962c4f9200d3 to your computer and use it in GitHub Desktop.
Save lloydjatkinson/206e21c2a0ceaea700dd962c4f9200d3 to your computer and use it in GitHub Desktop.
<template>
<a :href="url">{{ name }}</a>
</template>
<script>
import { defineComponent } from 'vue';
export default defineComponent({
name: 'App',
props: {
name: {
type: String,
required: true,
default: '',
},
url: {
type: String,
required: true,
default: '',
},
},
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment