play with this sphathegi code

This commit is contained in:
2023-08-11 14:57:48 +02:00
parent ae877784ee
commit 2801ee9691
5 changed files with 96 additions and 15 deletions

View File

@@ -0,0 +1,16 @@
import PagebuilderSectionPlugin from "../../../magico-section/src/components/PagebuilderSectionPlugin.vue";
export function useSections() {
console.log('DUPA',PagebuilderSectionPlugin);
function register(vm) {
vm.registerPlugin(
"SectionX1",
{
label: "Sekcja 1",
svg_off: ``,
},
PagebuilderSectionPlugin
);
}
return { register };
}