清理组件残余

This commit is contained in:
aixianling
2021-12-13 11:37:56 +08:00
parent b631cccc4f
commit eeb8d069fe
8 changed files with 50 additions and 78 deletions

View File

@@ -4,14 +4,13 @@
<add-list ref="addList" v-if="currIndex === 1" @change="onChange"></add-list>
<list ref="list" v-if="currIndex === 0" @change="onChange"></list>
</div>
<ai-tabbar :active.sync="currIndex" :list="tabBar"/>
<AiTabbar :active.sync="currIndex" :list="tabBar"/>
</div>
</template>
<script>
import AddList from './AddList.vue'
import List from './List.vue'
import AiTabbar from "../../../components/AiTabbar";
export default {
name: 'AppAskForm',
@@ -24,7 +23,6 @@ export default {
},
components: {
AiTabbar,
AddList,
List
},