21 transpileOptions?: any
22 isProduction?: boolean
23▶ isFunctional?: boolean
24 optimizeSSR?: boolean
25 prettify?: boolean
· · ·
36}
37
38▶export function compileTemplate(
39 options: SFCTemplateCompileOptions
40): SFCTemplateCompileResults {
· · ·
50 return {
51 ast: {},
52▶ code: `var render = function () {}\n` + `var staticRenderFns = []\n`,
53 source: options.source,
54 tips: [
· · ·
64}
65
66▶function preprocess(
67 options: SFCTemplateCompileOptions,
68 preprocessor: any
· · ·
95}
96
97▶function actuallyCompile(
98 options: SFCTemplateCompileOptions
99): SFCTemplateCompileResults {
+ 7 more matches in this file