diff --git a/src/components/VContentLink/meta/VContentLink.stories.js b/src/components/VContentLink/meta/VContentLink.stories.js
index 01f9d62335..5889d8ce57 100644
--- a/src/components/VContentLink/meta/VContentLink.stories.js
+++ b/src/components/VContentLink/meta/VContentLink.stories.js
@@ -21,10 +21,12 @@ export default {
},
}
-const VContentLinkStory = (args, { argTypes }) => ({
- template: ``,
+const VContentLinkStory = (args) => ({
+ template: ``,
components: { VContentLink },
- props: Object.keys(argTypes),
+ setup() {
+ return { args }
+ },
})
const TwoVContentLinkStory = () => ({
@@ -62,10 +64,12 @@ Default.args = {
isSelected: false,
}
-const VContentLinkHorizontalStory = (args, { argTypes }) => ({
- template: `
`,
+const VContentLinkHorizontalStory = (args) => ({
+ template: `
`,
components: { VContentLink },
- props: Object.keys(argTypes),
+ setup() {
+ return { args }
+ },
})
export const Horizontal = VContentLinkHorizontalStory.bind({})
diff --git a/src/components/VContentSwitcher/meta/VContentSwitcherPopover.stories.mdx b/src/components/VContentSwitcher/meta/VSearchTypePopover.stories.mdx
similarity index 100%
rename from src/components/VContentSwitcher/meta/VContentSwitcherPopover.stories.mdx
rename to src/components/VContentSwitcher/meta/VSearchTypePopover.stories.mdx