vuetify-fullpage-background
v0.1.0
Published
Vuetify-based component for a full-height page with a background image.
Downloads
31
Maintainers
Readme
Vuetify-Fullpage-Background
Important: This package is just used for test-purposes and not really meant for production. If you plan to use it in your project, do so on your own risk.
How to install?
Import the component and the css in any .vue file like so:
import VuetifyFullpageBg from 'vuetify-fullpage-background'
import 'vuetify-fullpage-background/dist/VuetifyFullpageBg.css'
...
components: {
VuetifyFullpageBg
}
...
Example Usage
<VuetifyFullpageBg
:img-src="..."
:img-src-set="..."
:img-sizes="..."
:img-lazy-src="..."
>
<template v-slot:center>
Center Slot
</template>
<template v-slot:imgDescription>
Description Slot
</template>
</VuetifyFullpageBg>
...