You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is my stores file. It's not working as intended. Getters return undefined on first page load. Making any changes in the project and saving they return intended values.
import { defineStore } from "pinia"
import axios from 'axios'
import { toRaw } from "vue"
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
This is my stores file. It's not working as intended. Getters return undefined on first page load. Making any changes in the project and saving they return intended values.
import { defineStore } from "pinia"
import axios from 'axios'
import { toRaw } from "vue"
const filesUrl = "/files/"
export const useFileStore = defineStore('file', {
state: ()=> ({
songs:undefined,
}
),
})
Beta Was this translation helpful? Give feedback.
All reactions