diff --git a/package.json b/package.json index ad5dc9e..f1d8608 100644 --- a/package.json +++ b/package.json @@ -14,8 +14,8 @@ }, "dependencies": { "@element-plus/icons-vue": "^2.3.2", + "@kalimahapps/vue-icons": "^1.9.6", "element-plus": "^2.13.5", - "oh-vue-icons": "^1.0.0-rc3", "vue": "^3.5.29", "vue-router": "4" }, @@ -48,4 +48,4 @@ "engines": { "node": "^20.19.0 || >=22.12.0" } -} +} diff --git a/src/components/UninstallSection.vue b/src/components/UninstallSection.vue index 7ad2197..95187c5 100644 --- a/src/components/UninstallSection.vue +++ b/src/components/UninstallSection.vue @@ -80,7 +80,7 @@ const cleanupCode = - +

Gỡ gói qua xbps:

diff --git a/src/data/installer.ts b/src/data/installer.ts index b96cc97..27e28de 100644 --- a/src/data/installer.ts +++ b/src/data/installer.ts @@ -5,7 +5,7 @@ export const distros = [ { name: 'Arch Linux', icon: 'si-archlinux' }, { name: 'openSUSE', icon: 'si-opensuse' }, { name: 'NixOS', icon: 'si-nixos' }, - { name: 'Void Linux', icon: 'co-linux' }, + { name: 'Void Linux', icon: 'si-voidlinux' }, ]; export type StepBlock = diff --git a/src/main.ts b/src/main.ts index f98b09e..fc7b4e2 100644 --- a/src/main.ts +++ b/src/main.ts @@ -2,7 +2,7 @@ import { createApp } from 'vue'; import router from './router'; import App from './App.vue'; import './assets/shared.css'; -import { OhVueIcon, addIcons } from 'oh-vue-icons'; +import { OhVueIcon, addIcons } from '@kalimahapps/vue-icons'; import { SiGithub, SiLinux, @@ -12,11 +12,9 @@ import { SiFedora, SiOpensuse, SiNixos, - CoLinux, - HiStar, - HiUsers, - HiTag, -} from 'oh-vue-icons/icons'; + SiVoidlinux, +} from '@kalimahapps/vue-icons/si'; +import { HiStar, HiUsers, HiTag } from '@kalimahapps/vue-icons/hi'; addIcons( SiGithub, @@ -27,7 +25,7 @@ addIcons( SiFedora, SiOpensuse, SiNixos, - CoLinux, + SiVoidlinux, HiStar, HiUsers, HiTag, @@ -36,4 +34,4 @@ addIcons( const app = createApp(App); app.component('v-icon', OhVueIcon); app.use(router); -app.mount('#app'); +app.mount('#app');