UNPKG

vue-carousel-3d

Version:

Beautiful, flexible and touch supported 3D Carousel for Vue.js

13 lines (9 loc) 265 B
'use strict'; const { Schema } = require('warehouse'); module.exports = ctx => { const PostCategory = new Schema({ post_id: {type: Schema.Types.CUID, ref: 'Post'}, category_id: {type: Schema.Types.CUID, ref: 'Category'} }); return PostCategory; };