We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f6b82e commit 039e7c3Copy full SHA for 039e7c3
packages/plugin-vue/README.md
@@ -11,6 +11,23 @@ export default {
11
}
12
```
13
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
31
## Example for transforming custom blocks
32
33
```ts
0 commit comments