Skip to content

Commit

Permalink
docs(plugin-vue): mark script/template/style options as Partial (…
Browse files Browse the repository at this point in the history
…#1342) [skip ci]
  • Loading branch information
underfin committed Jan 4, 2021
1 parent c03b10f commit da57335
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/plugin-vue/README.md
Expand Up @@ -22,9 +22,9 @@ export interface Options {
isProduction?: boolean

// options to pass on to @vue/compiler-sfc
script?: SFCScriptCompileOptions
template?: SFCTemplateCompileOptions
style?: SFCStyleCompileOptions
script?: Partial<SFCScriptCompileOptions>
template?: Partial<SFCTemplateCompileOptions>
style?: Partial<SFCStyleCompileOptions>
}
```

Expand Down

0 comments on commit da57335

Please sign in to comment.