UNPKG

vue-simple-accordion

Version:

A simple, easily configurable accordion for Vue 2.x

22 lines (19 loc) 294 B
import "./Heading.scss"; export default { props: { tag: { type: String, required: true } }, render(h) { return h( this.tag, { staticClass: "vsa-item__heading", ref: "vsa-item__heading" }, this.$slots.default ); } };