You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
404 B
16 lines
404 B
<script setup> |
|
import BasicConfig from "@/components/ec_api/BasicConfig.vue"; |
|
import TabArea from "@/components/ec_api/TabArea.vue"; |
|
import {useStore} from "vuex"; |
|
|
|
const store = useStore(); |
|
</script> |
|
|
|
<template> |
|
<BasicConfig></BasicConfig> |
|
<TabArea v-if="store.getters['ecApiModule/show_tab_area_getter']" :key="store.state.ecApiModule.group_api_id"></TabArea> |
|
</template> |
|
|
|
<style scoped> |
|
|
|
</style>
|
|
|