mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-31 21:51:10 -04:00
22 lines
367 B
Vue
22 lines
367 B
Vue
<template>
|
|
<footer class="site-footer">
|
|
<div class="text-right">
|
|
{{ $t('general.powered_by') }}
|
|
<a
|
|
href="http://bytefury.com/"
|
|
target="_blank">{{ $t('general.bytefury') }}
|
|
</a>
|
|
</div>
|
|
</footer>
|
|
</template>
|
|
|
|
<script type="text/babel">
|
|
export default {
|
|
data () {
|
|
return {
|
|
footer: 'footer'
|
|
}
|
|
}
|
|
}
|
|
</script>
|