Nuxt/test/fixtures/basic/composables/random.ts

4 lines
140 B
TypeScript

export function useRandomState (max = 100, name = 'default') {
return useState('random:' + name, () => Math.round(Math.random() * max))
}