You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
444 B
16 lines
444 B
import { ref } from 'vue';
|
|
|
|
export function useCounter(initialValue = 0) {
|
|
const count = ref(initialValue);
|
|
|
|
const inc = (delta = 1) => (count.value += delta);
|
|
const dec = (delta = 1) => (count.value -= delta);
|
|
const get = () => count.value;
|
|
const set = (val: number) => (count.value = val);
|
|
const reset = (val = initialValue) => {
|
|
initialValue = val;
|
|
return set(val);
|
|
};
|
|
|
|
return { count, inc, dec, get, set, reset };
|
|
}
|
|
|