wip: optimize binding access to known imported components

This commit is contained in:
Evan You
2020-11-10 18:06:38 -05:00
parent 4977526a2b
commit 4e8ef55237
4 changed files with 49 additions and 21 deletions

View File

@@ -62,7 +62,7 @@ export type HoistTransform = (
) => void
export interface BindingMetadata {
[key: string]: 'data' | 'props' | 'setup' | 'options'
[key: string]: 'data' | 'props' | 'setup' | 'options' | 'component-import'
}
interface SharedTransformCodegenOptions {