Migrate to vue3 (fix #126) #127

Merged
Xefir merged 32 commits from vue3 into main 2024-08-17 12:24:28 +00:00
Showing only changes of commit 1530e8b294 - Show all commits

View File

@ -7,9 +7,6 @@ export const showMessage = (text, backgroundColor) =>
}) })
export const showError = (text) => showMessage(text, '--color-error') export const showError = (text) => showMessage(text, '--color-error')
export const showWarning = (text) => showMessage(text, '--color-warning') export const showWarning = (text) => showMessage(text, '--color-warning')
export const showInfo = (text) => showMessage(text, '--color-primary') export const showInfo = (text) => showMessage(text, '--color-primary')
export const showSuccess = (text) => showMessage(text, '--color-success') export const showSuccess = (text) => showMessage(text, '--color-success')