diff options
author | 2023-05-14 21:26:18 +0200 | |
---|---|---|
committer | 2023-05-14 22:30:23 +0200 | |
commit | 77f2efc0b92847c3b1198446f4b520ecb2263164 (patch) | |
tree | 942ea5ffd922dbe7a9913e235a4fae17b117c925 /src/ui/c-button/c-button.demo.vue | |
parent | aad8d84e13ce31c1b7c1cbb930fb8bd4c0abe13a (diff) | |
download | it-tools-77f2efc0b92847c3b1198446f4b520ecb2263164.tar.gz it-tools-77f2efc0b92847c3b1198446f4b520ecb2263164.tar.zst it-tools-77f2efc0b92847c3b1198446f4b520ecb2263164.zip |
refactor(ui): replaced some n-input with c-input-text
Diffstat (limited to 'src/ui/c-button/c-button.demo.vue')
-rw-r--r-- | src/ui/c-button/c-button.demo.vue | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/ui/c-button/c-button.demo.vue b/src/ui/c-button/c-button.demo.vue index 4e9aa1a..ce339f5 100644 --- a/src/ui/c-button/c-button.demo.vue +++ b/src/ui/c-button/c-button.demo.vue @@ -25,6 +25,18 @@ > A </c-button> + + <c-button + v-for="buttonType of buttonTypes" + :key="buttonType" + :variant="buttonVariant" + :type="buttonType" + :size="buttonSize" + circle + mx-1 + > + <icon-mdi-content-copy /> + </c-button> </div> </div> </template> @@ -33,7 +45,7 @@ import _ from 'lodash'; const buttonVariants = ['basic', 'text'] as const; -const buttonTypes = ['default', 'primary'] as const; +const buttonTypes = ['default', 'primary', 'warning'] as const; const buttonSizes = ['small', 'medium', 'large'] as const; </script> |