| 123456789101112131415161718192021222324252627282930 |
- import { ref } from 'vue'
- import { initialModels } from './model'
- import { initialTaggings } from './tagging'
- import { initialTaggingStyles } from './tagging-style'
- import { initialGuides } from './guide'
- export const loaded = ref(false)
- export const error = ref(false)
- export const initialStore = async () => {
- await Promise.all([
- initialModels(),
- initialTaggingStyles(),
- initialTaggings(),
- initialGuides()
- ])
- try {
- loaded.value = true
- } catch {
- error.value = true
- }
- }
- export * from './sys'
- export * from './model'
- export * from './tagging'
- export * from './tagging-style'
- export * from './guide'
- export * from './tagging-positions'
|