From 7ed4f4b95c3557d45f390a5127b5373f1a503e27 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 | 122 +++++++++++++++++++++++++-- 1 file changed, 116 insertions(+), 6 deletions(-) diff --git a/src/components/NcButton/NcButton.vue b/src/components/NcButton/NcButton.vue index 1290271f8c..cf615aa90e 100644 --- a/src/components/NcButton/NcButton.vue +++ b/src/components/NcButton/NcButton.vue @@ -319,6 +319,118 @@ export default { } ``` + +### Usage example: Sorting table columns +The standard way to implement sortable table column headers should be like this: + +```vue + + + +``` +