Feast 2.0!
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 

30 řádky
572 B

  1. <template>
  2. <div id="header">
  3. <div>
  4. This is the (extremely early alpha of the) new Feast. If you're looking for the old version, <a href="https://classic.feast.crux.sexy">go here!</a>
  5. </div>
  6. <div>Version: {{version}}</div>
  7. </div>
  8. </template>
  9. <script lang="ts">
  10. import { Component, Vue, Prop } from 'vue-property-decorator'
  11. @Component({})
  12. export default class Header extends Vue {
  13. @Prop() version!: string
  14. }
  15. </script>
  16. <style scoped>
  17. #header {
  18. width: 100%;
  19. background: #222;
  20. top: 0%;
  21. padding-top: 32pt;
  22. padding-bottom: 32pt;
  23. }
  24. </style>