Skip to content

Instantly share code, notes, and snippets.

@powerdot
Last active May 21, 2021 12:22
Show Gist options
  • Save powerdot/2de3b1366c1436f4caa208b843640b25 to your computer and use it in GitHub Desktop.
Save powerdot/2de3b1366c1436f4caa208b843640b25 to your computer and use it in GitHub Desktop.
<template>
<div class="container">
<block-editor :layout="{ menu: true, propertyEditor: true, history: false, editor: true }">
</block-editor>
</div>
</template>
<script>
import BlockEditor from "vue-block-editor";
import 'vue-block-editor/dist/BlockEditor.css';
export default {
name: "Home",
components: {
BlockEditor
}
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment