Adds mixin for widgets

This commit is contained in:
Alicia Sykes 2021-11-28 21:24:25 +00:00
parent 50164bf790
commit 6b4fbfe25b
1 changed files with 10 additions and 0 deletions

10
src/mixins/WidgetMixin.js Normal file
View File

@ -0,0 +1,10 @@
const WidgetMixin = {
props: {
options: {
type: Object,
default: {},
},
},
};
export default WidgetMixin;