refactor(#10336): module semantics
This commit is contained in:
parent
be7b71a2f5
commit
3907cb51d6
|
@ -74,6 +74,9 @@ function toStories(component: string): string {
|
||||||
/>,
|
/>,
|
||||||
]
|
]
|
||||||
: [],
|
: [],
|
||||||
|
...hasImplStories
|
||||||
|
? []
|
||||||
|
: [
|
||||||
<import-declaration
|
<import-declaration
|
||||||
source={<literal value={`./${base}`} />}
|
source={<literal value={`./${base}`} />}
|
||||||
specifiers={[
|
specifiers={[
|
||||||
|
@ -83,6 +86,7 @@ function toStories(component: string): string {
|
||||||
/>,
|
/>,
|
||||||
]}
|
]}
|
||||||
/>,
|
/>,
|
||||||
|
],
|
||||||
<variable-declaration
|
<variable-declaration
|
||||||
kind="const"
|
kind="const"
|
||||||
declarations={[
|
declarations={[
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
import MkAnalogClock from './MkAnalogClock.vue';
|
||||||
export const Default = {
|
export const Default = {
|
||||||
render(args, { argTypes }) {
|
render(args, { argTypes }) {
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
import { Meta, Story } from '@storybook/vue3';
|
import { Meta, Story } from '@storybook/vue3';
|
||||||
import MkAnalogClock from './MkAnalogClock.vue';
|
|
||||||
const meta = {
|
const meta = {
|
||||||
title: 'components/MkAnalogClock',
|
title: 'components/MkAnalogClock',
|
||||||
component: MkAnalogClock,
|
component: MkAnalogClock,
|
||||||
};
|
};
|
||||||
|
export default meta;
|
||||||
|
import MkAnalogClock from './MkAnalogClock.vue';
|
||||||
export const Default = {
|
export const Default = {
|
||||||
render(args, { argTypes }) {
|
render(args, { argTypes }) {
|
||||||
return {
|
return {
|
||||||
|
@ -18,4 +19,3 @@ export const Default = {
|
||||||
layout: 'fullscreen',
|
layout: 'fullscreen',
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
export default meta;
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
import MkButton from './MkButton.vue';
|
||||||
export const Default = {
|
export const Default = {
|
||||||
render(args, { argTypes }) {
|
render(args, { argTypes }) {
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
import { Meta, Story } from '@storybook/vue3';
|
import { Meta, Story } from '@storybook/vue3';
|
||||||
import MkButton from './MkButton.vue';
|
|
||||||
const meta = {
|
const meta = {
|
||||||
title: 'components/MkButton',
|
title: 'components/MkButton',
|
||||||
component: MkButton,
|
component: MkButton,
|
||||||
};
|
};
|
||||||
export default meta;
|
export default meta;
|
||||||
|
import MkButton from './MkButton.vue';
|
||||||
export const Default = {
|
export const Default = {
|
||||||
render(args, { argTypes }) {
|
render(args, { argTypes }) {
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in New Issue