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.

22 lines
732 B

10 months ago
<template>
10 months ago
<editDrawer ref="editDrawerRef" />
<editGroup ref="editGroupRef" />
<editFormula ref="editFormulaRef" />
<ns-view-list-table v-bind="config" />
10 months ago
</template>
<script lang="ts" setup>
10 months ago
import { createVNode, onMounted, ref } from 'vue';
import { tableConfig, treeConfig } from './config';
import { useParams } from '/nerv-lib/use';
import editDrawer from './edit.vue';
import editGroup from './editGroup.vue';
import editFormula from './editFormula.vue';
const { getParams } = useParams();
const editDrawerRef = ref();
const editGroupRef = ref();
const editFormulaRef = ref();
const config = tableConfig(editDrawerRef, editGroupRef, editFormulaRef);
10 months ago
</script>
<style lang="less" scoped></style>