github.com/easysoft/zendata@v0.0.0-20240513203326-705bd5a7fd67/ui/src/layout/ColLayout.vue (about)

     1  <template>
     2    <div class="content">
     3      <router-view />
     4    </div>
     5  </template>
     6  
     7  <script>
     8  export default {
     9    name: 'ColLayout',
    10    data () {
    11      return {
    12      }
    13    },
    14    computed: {
    15    },
    16    created () {
    17    },
    18    mounted () {
    19    },
    20  }
    21  </script>
    22  
    23  <style lang="less" scoped>
    24  .all {
    25    display:flex;
    26    height: 100%;
    27    width: 100%;
    28  
    29    .left {
    30      width: 200px;
    31      border-right: 1px solid #e9f2fb;
    32      position: relative;
    33    }
    34    .content {
    35      padding: 0 10px;
    36    }
    37  }
    38  
    39  .sync {
    40    margin-top: 10px;
    41    text-align: center;
    42  }
    43  </style>