Add kindle provider

This commit is contained in:
Arran Hobson Sayers 2023-10-04 15:09:18 +01:00
parent 565ff36d4e
commit fe1edd24bc
5 changed files with 767 additions and 8 deletions

View file

@ -5,6 +5,10 @@ export const state = () => ({
text: 'Google Books',
value: 'google'
},
{
text: 'Kindle',
value: 'kindle'
},
{
text: 'Open Library',
value: 'openlibrary'
@ -94,4 +98,4 @@ export const mutations = {
remove(state, data) {
state.libraryScans = state.libraryScans.filter(scan => scan.id !== data.id)
}
}
}