fix: build - retire storybook

This commit is contained in:
liyasthomas
2021-08-03 10:24:32 +05:30
parent 10b7da0558
commit db4521db5a
32 changed files with 137 additions and 14759 deletions

View File

@@ -1,17 +0,0 @@
import Primary from "./Primary.vue"
export default {
component: Primary,
title: "Components/Tab",
}
const Template = (_args, { argTypes }) => ({
components: { Primary },
props: Object.keys(argTypes),
template: `<TabPrimary v-bind="$props" v-on="$props" />`,
})
export const TabPrimary = Template.bind({})
TabPrimary.args = {
label: "Primary",
}

View File

@@ -1,17 +0,0 @@
import Secondary from "./Secondary.vue"
export default {
component: Secondary,
title: "Components/Tab",
}
const Template = (_args, { argTypes }) => ({
components: { Secondary },
props: Object.keys(argTypes),
template: `<TabSecondary v-bind="$props" v-on="$props" />`,
})
export const TabSecondary = Template.bind({})
TabSecondary.args = {
label: "Secondary",
}