diff --git a/docs/en/2.3/README.md b/docs/en/2.3/README.md index bf35c54..75fbb8e 100644 --- a/docs/en/2.3/README.md +++ b/docs/en/2.3/README.md @@ -109,7 +109,7 @@ stylus: { /* stylus options */}

#### Use other plugins -Set `autoStyles: false` and `styleToImport: true` to import style as a dependency and plugins like [rollup-plugin-scss](https://github.com/differui/rollup-plugin-sass) can be used. +Set `autoStyles: false` and `styleToImports: true` to import style as a dependency and plugins like [rollup-plugin-scss](https://github.com/differui/rollup-plugin-sass) can be used. ``` js // rollup.config.js @@ -119,7 +119,7 @@ import scss from 'rollup-plugin-scss' export default { ... plugins: [ - vue({ autoStyles: false, styleToImport: true }), + vue({ autoStyles: false, styleToImports: true }), scss() ], ...