12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!-- TabComponent.vue -->
- <template>
- <div class="tab-container">
- <el-tabs type="card" style="background-color: white">
- <el-tab-pane label="会员">
- <member-view/>
- </el-tab-pane>
- <el-tab-pane label="企微">
- <qw-view/>
- </el-tab-pane>
- </el-tabs>
- </div>
- </template>
- <script>
- import MemberView from './index.vue';
- import QwView from './qw/index.vue';
- export default {
- name: 'TabComponent',
- components: {
- MemberView,
- QwView
- },
- data() {
- return {
- };
- }
- };
- </script>
- <style scoped>
- .tab-container {
- width: 100%;
- height: 100%;
- }
- .app-container{
- padding: 15px !important;
- margin: 0px !important;
- background-color: #fff !important;
- }
- </style>
|