feat(runtime-dom): support async component in defineCustomElement

close #4261
This commit is contained in:
Evan You
2021-08-06 19:15:55 -04:00
parent 1994f1200d
commit c421fb91b2
4 changed files with 177 additions and 47 deletions

View File

@@ -293,7 +293,7 @@ export interface ComponentInternalInstance {
/**
* custom element specific HMR method
*/
ceReload?: () => void
ceReload?: (newStyles?: string[]) => void
// the rest are only for stateful components ---------------------------------