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.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.vue')
-rw-r--r-- | src/ui/c-button/c-button.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/c-button/c-button.vue b/src/ui/c-button/c-button.vue index c17b078..121a1e9 100644 --- a/src/ui/c-button/c-button.vue +++ b/src/ui/c-button/c-button.vue @@ -18,7 +18,7 @@ import { useAppTheme } from '../theme/themes'; const props = withDefaults( defineProps<{ - type?: 'default' | 'primary'; + type?: 'default' | 'primary' | 'warning'; variant?: 'basic' | 'text'; disabled?: boolean; round?: boolean; |