File tree Expand file tree Collapse file tree 9 files changed +16
-16
lines changed
Expand file tree Collapse file tree 9 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 1- export * from './_types'
2- export * from './config'
3- export * from './image'
4- export * from './theme'
5- export * from './update'
6- export * from './upload'
1+ export * from './modules'
Original file line number Diff line number Diff line change 1- import type { ConfigStore } from './_types '
1+ import type { ConfigStore } from '../types '
22
33import { useStorage } from '@vueuse/core'
44import { computed , readonly } from 'vue'
55
66import { defaultFontConfig , defaultFontSizeConfig } from '@/config/fonts'
77
8- import { g } from './_utils '
8+ import { g } from '../utils '
99
1010const defaultConfig : ConfigStore = {
1111 lang : 'zh-CN' ,
Original file line number Diff line number Diff line change 1- import type { ImageStore , PasteMethod } from './_types '
1+ import type { ImageStore , PasteMethod } from '../types '
22import { useStorage } from '@vueuse/core'
33import { computed , readonly } from 'vue'
4- import { g } from './_utils '
4+ import { g } from '../utils '
55
66const defaultImage : ImageStore = {
77 pasteMethod : 'local' ,
Original file line number Diff line number Diff line change 1+ export * from './config'
2+ export * from './image'
3+ export * from './theme'
4+ export * from './update'
5+ export * from './upload'
Original file line number Diff line number Diff line change 1- import type { Theme , ThemeName , ThemeStore } from './_types '
1+ import type { Theme , ThemeName , ThemeStore } from '../types '
22import { useStorage } from '@vueuse/core'
33import { computed , readonly } from 'vue'
4- import { g } from './_utils '
4+ import { g } from '../utils '
55
66const defaultTheme : ThemeStore = {
77 current : 'normal' ,
Original file line number Diff line number Diff line change 1- import type { UpdateInfo , UpdateStore } from './_types '
1+ import type { UpdateInfo , UpdateStore } from '../types '
22import { useStorage } from '@vueuse/core'
33import { computed , readonly } from 'vue'
4- import { g } from './_utils '
4+ import { g } from '../utils '
55
66const defaultUpdate : UpdateStore = {
77 info : null ,
Original file line number Diff line number Diff line change 1- import type { BodyType , RequestMethod , UploadStore } from './_types '
1+ import type { BodyType , RequestMethod , UploadStore } from '../types '
22import { useStorage } from '@vueuse/core'
33import { computed , readonly } from 'vue'
4- import { g } from './_utils '
4+ import { g } from '../utils '
55
66const defaultUpload : UploadStore = {
77 url : '' ,
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments