Authored by htoooth

add layout

  1 +<template>
  2 + <div class="layout">
  3 + <slot></slot>
  4 + </div>
  5 +</template>
  6 +
  7 +<script>
  8 + export default {
  9 + name: 'Layout',
  10 + };
  11 +</script>
  12 +
  13 +<style lang="scss">
  14 + .layout {
  15 + position: absolute;
  16 + top: 0;
  17 + left: 0;
  18 + right: 0;
  19 + bottom: 0;
  20 + overflow: hidden;
  21 + font-size: 24px;
  22 + }
  23 +</style>