You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-csc-ui/src/components/AppBadgeGoogle.vue

28 lines
440 B

<template>
<div
style="width: 100%"
>
<a
:href="href"
target="_blank"
>
<img
style="width: 100%"
src="google-play-badge.png"
>
</a>
</div>
</template>
<script>
export default {
name: 'AppBadgeGoogle',
props: {
href: {
type: String,
required: true
}
}
}
</script>