mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-28 22:28:24 -04:00
9 lines
155 B
JavaScript
9 lines
155 B
JavaScript
import { defineStore } from 'pinia'
|
|
|
|
export const useLyricsStore = defineStore('LyricsStore', {
|
|
state: () => ({
|
|
content: [],
|
|
pane: false
|
|
})
|
|
})
|