From 0498e4351d35d2264e4ae7fad69d9410aba8ccf6 Mon Sep 17 00:00:00 2001 From: Julian Leucker <leuckerj@gmail.com> Date: Mon, 13 Feb 2023 13:46:26 +0100 Subject: [PATCH] Add custom highlight for both number grids --- example/src/App.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/example/src/App.vue b/example/src/App.vue index 6d08a39..311d66b 100644 --- a/example/src/App.vue +++ b/example/src/App.vue @@ -73,6 +73,11 @@ import NumberCounter from "./components/NumberCounter.vue"; <template #item="item"> <number-counter v-model="item.data.num"></number-counter> </template> + <template #highlight> + <div ref="highlight" class="custom-highlight"> + Das hier ist das Highlight + </div> + </template> </drag-grid> </div> <div class="ttt-container"> -- GitLab