v2.2.41
VueUiDashboard
Added a locked
config option to control the disabled state of the dashboard. Set to false by default, if true, disables resizing and dragging features.
Also exposed a toggleLock
method to toggle the lock state from the parent component.
const dashboard = ref(null);
function toggleLock() {
dashboard.value.toggleLock();
}
<VueUiDashboard
ref="dashboard"
:dataset="dataset"
:config="config"
/>
VueDataUi
Applied VueUiDashboard modifications.