Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/egrocer.codeskitter.site/resources/js/containers/
Upload File :
Current File : /home/users/unlimited/www/egrocer.codeskitter.site/resources/js/containers/TheFooter.vue

<template>
    <footer>
        <div class="footer clearfix mb-0 text-muted">
            <div class="float-start">
                <a href="javascript:void(0)" class="text-primary font-weight-normal" v-html="copyrightDetails"></a>
            </div>
            <div v-if="currentVersion !== ''" class="float-end">
                <p>
                  Version :- 
                  <a href="javascript:void(0)">{{ $currentVersion }}</a>
                </p>
            </div>
        </div>
    </footer>
</template>

<script>
export default {
  name: 'TheFooter',
  data() {
    return {
     copyrightDetails: window.copyrightDetails,
     currentVersion:window.currentVersion
    };
  }
}
</script>