Commit 91370ecd authored by Vitaly Slobodin's avatar Vitaly Slobodin

Mock gitlab-ui popover directive and component

See 06bd4dbd commit
for more information.
parent 4000aba0
......@@ -17,3 +17,20 @@ export const GlTooltip = {
return h('div', this.$attrs, this.$slots.default);
},
};
export const GlPopoverDirective = {
bind() {},
};
export const GlPopover = {
props: {
cssClasses: {
type: Array,
required: false,
default: () => [],
},
},
render(h) {
return h('div', this.$attrs, this.$slots.default);
},
};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment