Browse Source

fix error TS2339: Property '' does not exist on type CreateComponentPublicInstance (#14144)

3.2.0-release
Kerwin 1 year ago committed by GitHub
parent
commit
8583de878b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      dolphinscheduler-ui/src/layouts/content/index.tsx

5
dolphinscheduler-ui/src/layouts/content/index.tsx

@ -96,7 +96,8 @@ const Content = defineComponent({
return {
...toRefs(state),
changeMenuOption,
sideKeyRef
sideKeyRef,
currentRoute: route
}
},
render() {
@ -123,7 +124,7 @@ const Content = defineComponent({
style='padding: 16px 22px'
contentStyle={'height: 100%'}
>
<router-view key={this.$route.fullPath} />
<router-view key={this.currentRoute.fullPath} />
</NLayoutContent>
</NLayout>
</NLayout>

Loading…
Cancel
Save