diff --git a/addons/storyshots/storyshots-core/README.md b/addons/storyshots/storyshots-core/README.md
index 2667345d470..af3d314c30d 100644
--- a/addons/storyshots/storyshots-core/README.md
+++ b/addons/storyshots/storyshots-core/README.md
@@ -584,7 +584,31 @@ initStoryshots({
### `framework`
-If you are running tests from outside of your app's directory, storyshots' detection of which framework you are using may fail. Pass `"react"` or `"react-native"` to short-circuit this.
+If you are running tests from outside of your app's directory, storyshots' detection of which framework you are using may fail. Pass `"react"` or `"react-native"` to short-circuit this.
+
+For example:
+```js
+// storybook.test.js
+
+import path from 'path';
+import initStoryshots from '@storybook/addon-storyshots';
+
+initStoryshots({
+ framework: 'react', // Manually specify the project's framework
+ configPath: path.join(__dirname, '.storybook'),
+ integrityOptions: { cwd: path.join(__dirname, 'src', 'stories') },
+ // Other configurations
+});
+```
+
+Use this table as a reference for manually specifying the framework.
+
+| angular | html | preact |
+|----------------|------|--------------|
+| react | riot | react-native |
+| svelte | vue | vue3 |
+| web-components | rax | |
+
### `test`
diff --git a/docs/snippets/common/storybook-storyshots-custom-directory.js.mdx b/docs/snippets/common/storybook-storyshots-custom-directory.js.mdx
index cd01e330d94..522fe1d0a66 100644
--- a/docs/snippets/common/storybook-storyshots-custom-directory.js.mdx
+++ b/docs/snippets/common/storybook-storyshots-custom-directory.js.mdx
@@ -6,20 +6,20 @@ import path from 'path';
import initStoryshots from '@storybook/addon-storyshots';
// the required import from the @storybook/addon-storyshots-puppeteer addon
-import { imageSnapshot } from '@storybook/addon-storyshots-puppeteer'
+import { imageSnapshot } from '@storybook/addon-storyshots-puppeteer';
// function to customize the snapshot location
-const getMatchOptions = ({ context: { fileName }}) => {
+const getMatchOptions = ({ context: { fileName } }) => {
// Generates a custom path based on the file name and the custom directory.
const snapshotPath = path.join(path.dirname(fileName), 'your-custom-directory');
return { customSnapshotsDir: snapshotPath };
-}
+};
initStoryshots({
- // your own configuration
- test: imageSnapshot({
- // invoke the function above here
- getMatchOptions
- })
-});
+ // your own configuration
+ test: imageSnapshot({
+ // invoke the function above here
+ getMatchOptions,
+ }),
+});
```
\ No newline at end of file
diff --git a/docs/snippets/common/storybook-storyshots-custom-framework.js.mdx b/docs/snippets/common/storybook-storyshots-custom-framework.js.mdx
new file mode 100644
index 00000000000..5988ebd45ba
--- /dev/null
+++ b/docs/snippets/common/storybook-storyshots-custom-framework.js.mdx
@@ -0,0 +1,13 @@
+```js
+// storybook.test.js
+
+import path from 'path';
+import initStoryshots from '@storybook/addon-storyshots';
+
+initStoryshots({
+ framework: 'vue3', //👈 Manually specify the project's framework
+ configPath: path.join(__dirname, '.storybook'),
+ integrityOptions: { cwd: path.join(__dirname, 'src', 'stories') },
+ // Other configurations
+});
+```
\ No newline at end of file
diff --git a/docs/workflows/faq.md b/docs/workflows/faq.md
index 52018786cf8..f743eca30ff 100644
--- a/docs/workflows/faq.md
+++ b/docs/workflows/faq.md
@@ -239,6 +239,21 @@ npx http-server storybook-static
If you don't want to run the command above frequently. Add http-server
as a development dependency and create a new script to preview your production build of Storybook.
-### Can I use Storybook with Vue 3
+### Can I use Storybook with Vue 3?
Yes, Storybook support for Vue 3 is currently being finalized and will be released in version 6.2. See the [install page](../get-started/install.md) for instructions.
+
+
+### Is snapshot testing with Storyshots supported for Vue 3?
+
+Yes, if you're using Vue 3 in your project you can use the [`Storyshots addon`](https://www.npmjs.com/package/@storybook/addon-storyshots). You'll need to adjust your `config` object and manually specify the framework.
+
+
+
+