Files
REG_IBL/one-ui/apps/components/oneFooter.vue
2026-05-25 20:01:37 +07:00

21 lines
382 B
Vue

<template>
<v-footer color="blue lighten-2" app>
<one-clock></one-clock>
<v-spacer></v-spacer>
<span class="one-footer white--text">&copy; 2019</span>
</v-footer>
</template>
<style>
span.one-footer {
margin-right:30px;
}
</style>
<script>
module.exports = {
components: {
'one-clock' : httpVueLoader('./oneTanggal.vue')
}
}
</script>