Newer
Older
smartwell_front / src / views / systemConfig / viewsConfig / viewsConfig.vue
<template>
  <app-container style="padding: 10px 20px;">
    <el-tabs>
      <el-tab-pane>
        <span slot="label"><i class="el-icon-s-platform" />PC端</span>
        <pc-config />
      </el-tab-pane>
      <el-tab-pane>
        <span slot="label"><i class="el-icon-mobile-phone" />APP端</span>
        <app-config />
      </el-tab-pane>
    </el-tabs>
  </app-container>
</template>

<script>
import appConfig from './components/appConfig'
import pcConfig from './components/pcConfig'
export default {
  name: 'ViewsConfig',
  components: { appConfig, pcConfig }
}
</script>

<style rel="stylesheet/scss" lang="scss" scoped>
</style>