Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

polysoft-nafmii / polysoft-web-element

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • polysoft-web-element
  • src
  • layout
  • components
  • AppMain.vue
  • fanx's avatar
    init · a0c51663
    fanx committed May 25, 2021
    a0c51663 Browse Files
AppMain.vue 255 Bytes
RawBlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<template>
  <div class="app-main-wrapper">
    <router-view></router-view>
  </div>
</template>
<script>
export default {
  name: 'AppMain'
}
</script>
<style lang="scss" scoped>
.app-main-wrapper {
  display: flex;
  flex: 1;
  padding: 15px;
}
</style>