odan blog

Vue Developer Experience / VueDXを試した

Vue Developer Experience / VueDX とは

試したいモチベーション

// List.stories.tsx

import React from "react";
import { Story, Meta } from "@storybook/react/types-6-0";
import { List, ListProps } from "./List";

export default {
  component: List,
  title: "List",
} as Meta;

// Always an empty list, not super interesting
const Template: Story<ListProps> = (args) => <List {...args} />;

https://storybook.js.org/docs/react/writing-stories/introduction#stories-for-two-or-more-components

VueDX で出来ること

VueDX で出来ないこと