Created
May 17, 2022 16:41
-
-
Save lloydjatkinson/206e21c2a0ceaea700dd962c4f9200d3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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