Skip to content

Commit 039e7c3

Browse files
committed
docs: migration guide
1 parent 9f6b82e commit 039e7c3

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

packages/plugin-vue/README.md

+17
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,23 @@ export default {
1111
}
1212
```
1313

14+
## Options
15+
16+
```ts
17+
export interface Options {
18+
include?: string | RegExp | (string | RegExp)[]
19+
exclude?: string | RegExp | (string | RegExp)[]
20+
21+
ssr?: boolean
22+
isProduction?: boolean
23+
24+
// options to pass on to @vue/compiler-sfc
25+
script?: SFCScriptCompileOptions
26+
template?: SFCTemplateCompileOptions
27+
style?: SFCStyleCompileOptions
28+
}
29+
```
30+
1431
## Example for transforming custom blocks
1532

1633
```ts

0 commit comments

Comments
 (0)