We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fbc4a4 commit 0d52a27Copy full SHA for 0d52a27
packages/plugin-vue/src/index.ts
@@ -41,12 +41,17 @@ export interface Options {
41
SFCScriptCompileOptions,
42
| 'babelParserPlugins'
43
| 'globalTypeFiles'
44
- | 'defineModel'
45
| 'propsDestructure'
46
| 'fs'
47
| 'hoistStatic'
48
>
49
- >
+ > & {
+ /**
50
+ * @deprecated defineModel is now a stable feature and always enabled if
51
+ * using Vue 3.4 or above.
52
+ */
53
+ defineModel?: boolean
54
+ }
55
template?: Partial<
56
Pick<
57
SFCTemplateCompileOptions,
0 commit comments