mirror of
https://github.com/sub-store-org/Sub-Store.git
synced 2025-08-10 00:52:40 +00:00
43 lines
772 B
Vue
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>
|