|
|
@ -27,7 +27,7 @@ export class CodegenState { |
|
|
|
this.dataGenFns = pluckModuleFunction(options.modules, 'genData') |
|
|
|
this.directives = extend(extend({}, baseDirectives), options.directives) |
|
|
|
const isReservedTag = options.isReservedTag || no |
|
|
|
this.maybeComponent = (el: ASTElement) => el.component || !isReservedTag(el.tag) |
|
|
|
this.maybeComponent = (el: ASTElement) => !!el.component || !isReservedTag(el.tag) |
|
|
|
this.onceId = 0 |
|
|
|
this.staticRenderFns = [] |
|
|
|
this.pre = false |
|
|
|