Browse Source

[Feature][UI Next] Default open task group manage and project task menu. (#8244)

3.0.0/version-upgrade
songjianet 3 years ago committed by GitHub
parent
commit
303845b78d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      dolphinscheduler-ui-next/src/layouts/content/components/sidebar/index.tsx

8
dolphinscheduler-ui-next/src/layouts/content/components/sidebar/index.tsx

@ -15,11 +15,10 @@
* limitations under the License.
*/
import { defineComponent, ref, PropType, watch } from 'vue'
import { defineComponent, ref, PropType } from 'vue'
import { NLayoutSider, NMenu } from 'naive-ui'
import { useMenuClick } from './use-menuClick'
import { useMenuStore } from '@/store/menu/menu'
import { useRoute } from 'vue-router'
const Sidebar = defineComponent({
name: 'Sidebar',
@ -34,14 +33,15 @@ const Sidebar = defineComponent({
}
},
setup() {
const route = useRoute()
const menuStore = useMenuStore()
const collapsedRef = ref(false)
const defaultExpandedKeys = [
'workflow',
'task',
'udf-manage',
'service-manage',
'statistical-manage'
'statistical-manage',
'task-group-manage'
]
const { handleMenuClick } = useMenuClick()

Loading…
Cancel
Save