Improve talents and lint code

This commit is contained in:
2023-09-04 00:03:30 +02:00
parent a0e4b53b17
commit 774ccf75fb
5 changed files with 51 additions and 38 deletions

View File

@@ -1,7 +1,7 @@
import { defineStore } from 'pinia'
export const useTalentsStore = defineStore(
'talents',
'talents',
() => {
const currentCategory = ref<string>('all')
const currentFavorite = ref<boolean>(false)
@@ -26,5 +26,5 @@ export const useTalentsStore = defineStore(
},
{
persist: true,
}
},
)