mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-03 22:13:18 -05: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>
 |