mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
e7cc2757c3
Co-authored-by: Alexander Lichter <manniL@gmx.net>
24 lines
379 B
JavaScript
24 lines
379 B
JavaScript
import { nextId } from '@/lib/db'
|
|
|
|
export const state = () => {
|
|
return {
|
|
id: nextId(),
|
|
id2: 0,
|
|
idUndefined: undefined
|
|
}
|
|
}
|
|
|
|
export const mutations = {
|
|
setId2 (state, id) {
|
|
state.id2 = id
|
|
}
|
|
}
|
|
|
|
export const actions = {
|
|
nuxtServerInit ({ commit, state }, { route }) {
|
|
if (route.query.onServerInit === '1') {
|
|
commit('setId2', nextId())
|
|
}
|
|
}
|
|
}
|