From 605976e156704f2ed9e7fd15b8cfc8a9b46e93e4 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Wed, 26 Jul 2023 21:17:07 +0200 Subject: [PATCH] feat(NcButton): Allow to use `` inside NcButton default slot Signed-off-by: Ferdinand Thiessen --- src/components/NcButton/NcButton.vue | 117 +++++++++++++++++++++++++-- 1 file changed, 111 insertions(+), 6 deletions(-) diff --git a/src/components/NcButton/NcButton.vue b/src/components/NcButton/NcButton.vue index 79bc178965..51ae21bfc8 100644 --- a/src/components/NcButton/NcButton.vue +++ b/src/components/NcButton/NcButton.vue @@ -291,6 +291,113 @@ export default { } ``` + +### Usage example: Sorting table columns +The standard way to implement sortable table column headers should be like this: + +```vue + + + +``` +