vue-essential-slices
Version:
A set of professionally made, accessible Vue components, linked to a (Prismic) backend
21 lines (17 loc) • 342 B
JavaScript
import FeatureTestimonials from "./index.vue";
import mock from './mock.json'
export const Default = () => ({
components: {
FeatureTestimonials
},
props: {
slice: {
type: Object,
default: mock
}
},
template: `<feature-testimonials :slice="slice" />`
});
export default {
title: "FeatureTestimonials"
};