Default.vue 316 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="layout">
  3. <slot/>
  4. </div>
  5. </template>
  6. <static-query>
  7. query {
  8. metaData {
  9. titreDuProjet
  10. }
  11. }
  12. </static-query>
  13. <style>
  14. html,body{
  15. height:100%;
  16. }
  17. body {
  18. font-family: "Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  19. margin:0;
  20. padding:0;
  21. line-height: 1.5;
  22. }
  23. </style>