mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-16 16:07:33 +08:00
migrate date range selection sheet / dialog to composition API and typescript
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import { ref } from 'vue';
|
||||
import { defineStore } from 'pinia';
|
||||
|
||||
export const useEnvironmentsStore = defineStore('environments', () => {
|
||||
const framework7DarkMode = ref<boolean | undefined>(undefined);
|
||||
|
||||
return {
|
||||
// states
|
||||
framework7DarkMode
|
||||
};
|
||||
});
|
||||
Reference in New Issue
Block a user