default.vue 475 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <div class="layout-default">
  3. <nuxt/>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. head() {
  9. return {
  10. htmlAttrs: {
  11. lang: this.$store.state.locale
  12. }
  13. }
  14. }
  15. }
  16. </script>
  17. <style lang="less">
  18. .layout-default {
  19. height: 100%;
  20. .page-container {
  21. display: flex;
  22. flex-flow: column nowrap;
  23. justify-content: space-between;
  24. align-items: stretch;
  25. min-height: 100%;
  26. .page-wrap {
  27. flex: 1;
  28. }
  29. }
  30. }
  31. </style>