Skip to content

Commit

Permalink
fix(runtime): 修复tmpl_0_view not found 警告,fix #12558
Browse files Browse the repository at this point in the history
  • Loading branch information
Chen-jj committed Oct 16, 2022
1 parent 49dab3b commit ed21c8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/taro-runtime/src/dsl/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { eventHandler } from '../dom/event'
import { eventCenter } from '../emitter/emitter'
import env from '../env'
import { perf } from '../perf'
import { customWrapperCache, incrementId } from '../utils'
import { customWrapperCache, getComponentsAlias,incrementId } from '../utils'

import type { PageConfig } from '@tarojs/taro'
import type { TaroRootElement } from '../dom/root'
Expand Down Expand Up @@ -322,7 +322,7 @@ export function createRecursiveComponentConfig (componentName?: string) {
i: {
type: Object,
value: {
[Shortcuts.NodeName]: VIEW
[Shortcuts.NodeName]: getComponentsAlias()[VIEW]._num
}
},
l: {
Expand Down

0 comments on commit ed21c8b

Please sign in to comment.