Skip to content

Commit

Permalink
docs: migration guide
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Jan 2, 2021
1 parent 9f6b82e commit 039e7c3
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions packages/plugin-vue/README.md
Expand Up @@ -11,6 +11,23 @@ export default {
}
```

## Options

```ts
export interface Options {
include?: string | RegExp | (string | RegExp)[]
exclude?: string | RegExp | (string | RegExp)[]

ssr?: boolean
isProduction?: boolean

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

## Example for transforming custom blocks

```ts
Expand Down

0 comments on commit 039e7c3

Please sign in to comment.