FooterBar
This component allows you to create a footer bar. It contains a label for the app name and other extra useful info like app version and © copy right.
Example

<footer-bar
:app-name="appName"
:app-version="appVersion"
/>
export default {
name: 'App',
data() {
return {
appName: this.$config.appName,
appVersion: this.$config.appVersion
}
}
}
Props
| Name | Description | Type | Required | Default |
|---|---|---|---|---|
| appName | The App name | String | false | "" |
| appVersion | The App version | String | false | "" |