2024-09-14 21:21:16 +08:00
|
|
|
import type { CaptchaPoint } from '../types';
|
|
|
|
|
|
|
|
import { reactive } from 'vue';
|
|
|
|
|
|
|
|
export function useCaptchaPoints() {
|
|
|
|
const points = reactive<CaptchaPoint[]>([]);
|
|
|
|
function addPoint(point: CaptchaPoint) {
|
|
|
|
points.push(point);
|
|
|
|
}
|
2024-09-25 18:11:02 +08:00
|
|
|
|
2024-09-14 21:21:16 +08:00
|
|
|
function clearPoints() {
|
|
|
|
points.splice(0, points.length);
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
addPoint,
|
|
|
|
clearPoints,
|
|
|
|
points,
|
|
|
|
};
|
|
|
|
}
|