Skip to content

Commit

Permalink
Add troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
kylegach committed Mar 6, 2024
1 parent ecb8537 commit b3696dc
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/get-started/vue3-vite.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,24 @@ import type { MyProps } from '@/types'; // ❌ Cannot be resolved
import type { MyProps } from '../types'; // ✅ Can be resolved
```

## 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:

<!-- prettier-ignore-start -->

<CodeSnippets
paths={[
'common/storybook-init-v7.npx.js.mdx',
'common/storybook-init-v7.yarn.js.mdx',
'common/storybook-init-v7.pnpm.js.mdx',
]}
/>

<!-- prettier-ignore-end -->

## API

### Options
Expand Down

0 comments on commit b3696dc

Please sign in to comment.