imengyu / vue-code-layout

Vue 仿 VSCode 布局组件 A Vue editor layout component that like VSCode and can be used to develop web editors.
https://docs.imengyu.top/vue-code-layout-docs/
MIT License
30 stars 4 forks source link

Is there a way to disable drag and drop ? #6

Open Donald2010 opened 1 week ago

Donald2010 commented 1 week ago

How to make panels not draggable in CodeLayout ?

imengyu commented 6 days ago

I have added draggable attribute to each panel, can set it to false, so the panel can't be dragged, you can update to latest version.

grid.addPanel({
    name: `NodeEditor${doc.uid}`,
    title: doc.name,
    draggable: false, //No drag
});