File tree 2 files changed +16
-0
lines changed
2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,21 @@ export interface VueLoaderOptions {
30
30
transformAssetUrls ?: SFCTemplateCompileOptions [ 'transformAssetUrls' ]
31
31
compiler ?: TemplateCompiler | string
32
32
compilerOptions ?: CompilerOptions
33
+ /**
34
+ * TODO remove in 3.4
35
+ * @deprecated
36
+ */
33
37
reactivityTransform ?: boolean
38
+
39
+ /**
40
+ * @experimental
41
+ */
42
+ propsDestructure ?: boolean
43
+ /**
44
+ * @experimental
45
+ */
46
+ defineModel ?: boolean
47
+
34
48
customElement ?: boolean | RegExp
35
49
36
50
hotReload ?: boolean
Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ export function resolveScript(
62
62
isProd,
63
63
inlineTemplate : enableInline ,
64
64
reactivityTransform : options . reactivityTransform ,
65
+ propsDestructure : options . propsDestructure ,
66
+ defineModel : options . defineModel ,
65
67
babelParserPlugins : options . babelParserPlugins ,
66
68
templateOptions : {
67
69
ssr : isServer ,
You can’t perform that action at this time.
0 commit comments