Files
Sub-Store/web/src/components/base/VComponent.vue
T
2021-04-15 17:00:07 +08:00

43 lines
772 B
Vue

<template>
<section class="mb-12 text-center">
<h1
class="font-weight-light mb-2"
style="color:#3c4858; font-size:24px"
v-text="`Vuetify ${heading}`"
/>
<span
class="font-weight-light"
style="font-size: 16px; color: #3c4858"
>
Please checkout the
<a
:href="`https://vuetifyjs.com/${link}`"
class="secondary--text"
rel="noopener"
style="text-decoration:none;"
target="_blank"
>
full documentation
</a>
</span>
</section>
</template>
<script>
export default {
name: 'VComponent',
props: {
heading: {
type: String,
default: ''
},
link: {
type: String,
default: ''
}
}
}
</script>