Files
getting-started/spring-boot/thymeleaf-vue/client/stories/WeekChart.stories.js
2020-06-08 21:51:46 +10:00

13 lines
267 B
JavaScript

import WeekChart from '../src/components/WeekChart.vue';
export default {
title: 'WeekChart',
component: WeekChart,
};
export const DefaultState = () => ({
components: {
chart: WeekChart
},
template: `<chart v-bind:chartData="[1,2,3,4,5,6,7]" />`
});