UNPKG

vue-essential-slices

Version:

A set of professionally made, accessible Vue components, linked to a (Prismic) backend

25 lines (20 loc) 394 B
import TestimonialsSlider from "./index.vue"; import mock from './mock.json' import { withKnobs } from "@storybook/addon-knobs"; export const Default = () => ({ components: { TestimonialsSlider }, props: { slice: { type: Object, default: mock } }, template: `<testimonials-slider :slice="slice" />` }); export default { title: "Testimonials Slider" };