diff --git a/code/frameworks/vue3-webpack5/README.md b/code/frameworks/vue3-webpack5/README.md
index 2e365a8a7f8e..a4e696468d58 100644
--- a/code/frameworks/vue3-webpack5/README.md
+++ b/code/frameworks/vue3-webpack5/README.md
@@ -1,44 +1,3 @@
# Storybook for Vue 3 and Webpack
-Storybook for Vue 3 is a UI development environment for your Vue 3 components.
-With it, you can visualize different states of your UI components and develop them interactively.
-
-![Storybook Screenshot](https://github.com/storybookjs/storybook/blob/main/media/storybook-intro.gif)
-
-Storybook runs outside of your app.
-So you can develop UI components in isolation without worrying about app specific dependencies and requirements.
-
-## Getting Started
-
-```sh
-cd my-vue3-app
-npx storybook@latest init
-```
-
-For more information visit: [storybook.js.org](https://storybook.js.org)
-
----
-
-Storybook also comes with a lot of [addons](https://storybook.js.org/addons) and a great API to customize as you wish.
-You can also build a [static version](https://storybook.js.org/docs/sharing/publish-storybook) of your Storybook and deploy it anywhere you want.
-
-## Extending the Vue application
-
-Storybook creates a [Vue 3 application](https://vuejs.org/api/application.html#application-api) for your component preview.
-When using global custom components (`app.component`), directives (`app.directive`), extensions (`app.use`), or other application methods, you will need to configure those in the `./storybook/preview.js` file.
-
-Therefore, Storybook provides you with a `setup` function exported from this package, which receives as a callback your Storybook instance, which you can interact with and add your custom configuration.
-
-```js
-// .storybook/preview.js
-
-import { setup } from '@storybook/vue3';
-
-setup((app) => {
- app.use(MyPlugin);
- app.component('my-component', MyComponent);
- app.mixin({
- /* My mixin */
- });
-});
-```
+See [documentation](https://storybook.js.org/docs/8.0/get-started/vue3-webpack5?renderer=vue) for installation instructions, usage examples, APIs, and more.
\ No newline at end of file
diff --git a/docs/get-started/vue3-vite.md b/docs/get-started/vue3-vite.md
index e79cc1f3b6fc..776281caf29b 100644
--- a/docs/get-started/vue3-vite.md
+++ b/docs/get-started/vue3-vite.md
@@ -28,8 +28,8 @@ Storybook for Vue & Vite is only supported in [Vue](?renderer=vue) projects.
## Requirements
- Vue ≥ 3
-- Vite ≥ 3.0 (4.X recommended)
-- Storybook ≥ 7.0
+- Vite ≥ 4.0
+- Storybook ≥ 8.0
## Getting started
diff --git a/docs/get-started/vue3-webpack5.md b/docs/get-started/vue3-webpack5.md
new file mode 100644
index 000000000000..283ba4fbe2d3
--- /dev/null
+++ b/docs/get-started/vue3-webpack5.md
@@ -0,0 +1,197 @@
+---
+title: Storybook for Vue & Webpack
+---
+
+export const SUPPORTED_RENDERER = 'vue';
+
+Storybook for Vue & Webpack is a [framework](../contribute/framework.md) that makes it easy to develop and test UI components in isolation for [Vue](https://vuejs.org/) applications built with [Webpack](https://webpack.js.org/).
+
+
+
+
+
+Storybook for Vue & Webpack is only supported in [Vue](?renderer=vue) projects.
+
+
+
+
+
+
+
+
+
+## Requirements
+
+- Vue ≥ 3.0
+- Webpack ≥ 5.0
+- Storybook ≥ 8.0
+
+## Getting started
+
+### In a project without Storybook
+
+Follow the prompts after running this command in your Vue project's root directory:
+
+
+
+
+
+
+
+[More on getting started with Storybook.](./install.md)
+
+### In a project with Storybook
+
+This framework is designed to work with Storybook 7+. If you’re not already using v7, upgrade with this command:
+
+
+
+
+
+
+
+#### Automatic migration
+
+When running the `upgrade` command above, you should get a prompt asking you to migrate to `@storybook/vue3-webpack5`, which should handle everything for you. In case that auto-migration does not work for your project, refer to the manual migration below.
+
+#### Manual migration
+
+First, install the framework:
+
+
+
+
+
+
+
+Next, install and register your appropriate compiler addon, depending on whether you're using SWC (recommended) or Babel:
+
+
+
+
+
+
+
+or
+
+
+
+
+
+
+
+More details can be found in the [Webpack builder docs](../builders/webpack.md#compiler-support).
+
+Finally, update your `.storybook/main.js|ts` to change the framework property:
+
+
+
+
+
+
+
+## Extending the Vue application
+
+Storybook creates a [Vue 3 application](https://vuejs.org/api/application.html#application-api) for your component preview.
+When using global custom components (`app.component`), directives (`app.directive`), extensions (`app.use`), or other application methods, you will need to configure those in the `./storybook/preview.js` file.
+
+Therefore, Storybook provides you with a `setup` function exported from this package, which receives as a callback your Storybook instance, which you can interact with and add your custom configuration.
+
+```js
+// .storybook/preview.js
+
+import { setup } from '@storybook/vue3';
+
+setup((app) => {
+ app.use(MyPlugin);
+ app.component('my-component', MyComponent);
+ app.mixin({
+ /* My mixin */
+ });
+});
+```
+
+## Troubleshooting
+
+### Storybook doesn't work with my Vue 2 project
+
+[Vue 2 entered End of Life](https://v2.vuejs.org/lts/) (EOL) on December 31st, 2023, and is no longer maintained by the Vue team. As a result, Storybook no longer supports Vue 2. We recommend you upgrade your project to Vue 3, which Storybook fully supports. If that's not an option, you can still use Storybook with Vue 2 by installing the latest version of Storybook 7 with the following command:
+
+
+
+
+
+
+
+## API
+
+### Options
+
+You can pass an options object for additional configuration if needed:
+
+```ts
+// .storybook/main.ts
+import type { StorybookConfig } from '@storybook/vue-webpack5';
+
+const config: StorybookConfig = {
+ framework: {
+ name: '@storybook/vue-webpack5',
+ options: {
+ // ...
+ },
+ },
+};
+
+export default config;
+```
+
+#### `builder`
+
+Type: `Record`
+
+Configure options for the [framework's builder](../api/main-config-framework.md#optionsbuilder). For this framework, available options can be found in the [Webpack builder docs](../builders/webpack.md).
+
+
+
+
diff --git a/docs/snippets/vue/vue3-webpack5-add-framework.js.mdx b/docs/snippets/vue/vue3-webpack5-add-framework.js.mdx
new file mode 100644
index 000000000000..c5b6324a748e
--- /dev/null
+++ b/docs/snippets/vue/vue3-webpack5-add-framework.js.mdx
@@ -0,0 +1,7 @@
+```js
+// .storybook/main.js
+export default {
+ // ...
+ framework: '@storybook/vue3-webpack5', // 👈 Add this
+};
+```
diff --git a/docs/snippets/vue/vue3-webpack5-add-framework.ts.mdx b/docs/snippets/vue/vue3-webpack5-add-framework.ts.mdx
new file mode 100644
index 000000000000..d83650ea1e35
--- /dev/null
+++ b/docs/snippets/vue/vue3-webpack5-add-framework.ts.mdx
@@ -0,0 +1,11 @@
+```ts
+// .storybook/main.ts
+import { StorybookConfig } from '@storybook/vue3-webpack5';
+
+const config: StorybookConfig = {
+ // ...
+ framework: '@storybook/vue3-webpack5', // 👈 Add this
+};
+
+export default config;
+```
diff --git a/docs/snippets/vue/vue3-webpack5-install.npm.js.mdx b/docs/snippets/vue/vue3-webpack5-install.npm.js.mdx
new file mode 100644
index 000000000000..55a7bc78bd80
--- /dev/null
+++ b/docs/snippets/vue/vue3-webpack5-install.npm.js.mdx
@@ -0,0 +1,3 @@
+```shell
+npm install --save-dev @storybook/vue3-webpack5
+```
diff --git a/docs/snippets/vue/vue3-webpack5-install.pnpm.js.mdx b/docs/snippets/vue/vue3-webpack5-install.pnpm.js.mdx
new file mode 100644
index 000000000000..24ce6105b49e
--- /dev/null
+++ b/docs/snippets/vue/vue3-webpack5-install.pnpm.js.mdx
@@ -0,0 +1,3 @@
+```shell
+pnpm install --save-dev @storybook/vue3-webpack5
+```
diff --git a/docs/snippets/vue/vue3-webpack5-install.yarn.js.mdx b/docs/snippets/vue/vue3-webpack5-install.yarn.js.mdx
new file mode 100644
index 000000000000..e811a7ae3025
--- /dev/null
+++ b/docs/snippets/vue/vue3-webpack5-install.yarn.js.mdx
@@ -0,0 +1,3 @@
+```shell
+yarn add --dev @storybook/vue3-webpack5
+```
diff --git a/docs/toc.js b/docs/toc.js
index 346ab3a255d8..f8d36d34fcad 100644
--- a/docs/toc.js
+++ b/docs/toc.js
@@ -58,6 +58,11 @@ module.exports = {
title: 'Vue & Vite',
type: 'link',
},
+ {
+ pathSegment: 'vue3-webpack5',
+ title: 'Vue & Webpack',
+ type: 'link',
+ },
],
},
{