11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
import BlockContentRenderer from "./components/BlockContentRenderer.vue";
|
|
|
|
function install(Vue) {
|
|
console.log("Ill be executed hopefully");
|
|
|
|
Vue.component("block-content-renderer", BlockContentRenderer);
|
|
}
|
|
|
|
export default { install };
|
|
export { BlockContentRenderer };
|