From aa8c3d92eb862e34d56cfff7c86df27d17dd7b1e Mon Sep 17 00:00:00 2001 From: Julian Leucker <leuckerj@gmail.com> Date: Wed, 25 Oct 2023 14:12:44 +0200 Subject: [PATCH] Import DragGrid --- example/src/ExampleAOverlay.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/example/src/ExampleAOverlay.vue b/example/src/ExampleAOverlay.vue index f4dc3b2..a31c87a 100644 --- a/example/src/ExampleAOverlay.vue +++ b/example/src/ExampleAOverlay.vue @@ -1,4 +1,6 @@ <script> +import DragGrid from "../../src/DragGrid.vue"; + function initialState() { return { items: [ @@ -74,6 +76,9 @@ function initialState() { export default { name: "ExampleAOverlay", + components: { + DragGrid, + }, data() { return initialState(); }, -- GitLab