diff --git a/docs/recipes/vue-component.md b/docs/recipes/vue-component.md index a964885b..a3fc0cd8 100644 --- a/docs/recipes/vue-component.md +++ b/docs/recipes/vue-component.md @@ -14,9 +14,11 @@ Otherwise you need to add `rollup-plugin-vue` manually using the CLI flag `--plu // bili.config.js module.exports = { plugins: { - vue: true, + vue: true // or with custom options // vue: {} } } ``` + +NOTE: due to [an issue with rollup-plugin-vue](https://github.com/vuejs/rollup-plugin-vue/issues/303), Windows users should use rollup-plugin-vue 5.1.1 or at least [5.1.5](https://github.com/vuejs/rollup-plugin-vue/issues/303#issuecomment-571249003).