21 lines
438 B
TypeScript
21 lines
438 B
TypeScript
|
import { defineStore } from "pinia";
|
||
|
import { reactive, ref } from "vue";
|
||
|
|
||
|
export type TomatoTarget = {
|
||
|
id: string;
|
||
|
finishTime: number;
|
||
|
remindTime: number | null;
|
||
|
title: string;
|
||
|
|
||
|
}
|
||
|
export default defineStore("work", () => {
|
||
|
const state = reactive({
|
||
|
list: [] as TomatoTarget[],
|
||
|
})
|
||
|
const openShowModel = ref<undefined | null | TomatoTarget>()
|
||
|
|
||
|
return {
|
||
|
state,
|
||
|
openShowModel
|
||
|
}
|
||
|
})
|