fix(notification): Fixes type errors in the notification component.
- Adds a type assertion to the `variant` property to resolve type mismatch issues. `chore`: Ignores files generated by Tauri. - Adds the `/src-tauri/gen/` directory to the `.gitignore` file
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -59,3 +59,4 @@ coverage/
|
||||
*.lcov
|
||||
.junit/
|
||||
/cores/
|
||||
/src-tauri/gen/
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
v-model="visible[item.id]"
|
||||
:timeout="item.timeout"
|
||||
:color="item.color"
|
||||
:variant="item.variant"
|
||||
:variant="item.variant as any"
|
||||
top
|
||||
right
|
||||
:style="{
|
||||
|
||||
Reference in New Issue
Block a user