Skip to content

v2.2.41

Compare
Choose a tag to compare
@graphieros graphieros released this 23 Jul 05:01
· 1272 commits to master since this release
  • 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.