feat: the other profile buttons

This commit is contained in:
2025-03-14 00:23:47 +00:00
parent fd27000c05
commit 90ba27c967
11 changed files with 112 additions and 33 deletions

View File

@ -5,6 +5,7 @@ import Theme from '@primevue/themes/aura';
import PrimeVue from 'primevue/config';
import Tooltip from 'primevue/tooltip';
import App from './components/App.vue';
import { changePrimaryColor } from './util';
const pinia = createPinia();
const app = createApp(App);
@ -17,5 +18,6 @@ app.use(PrimeVue, {
preset: Preset,
},
});
changePrimaryColor(null);
app.directive('tooltip', Tooltip);
app.mount('#app');