mirror of
https://github.com/frappe/books.git
synced 2025-01-26 00:28:25 +00:00
9 lines
273 B
TypeScript
9 lines
273 B
TypeScript
|
import { reactive, ref } from 'vue';
|
||
|
import { FocusedDocContextSet } from './misc';
|
||
|
|
||
|
export const docsPathRef = ref<string>('');
|
||
|
export const systemLanguageRef = ref<string>('');
|
||
|
export const focusedDocsRef = reactive<FocusedDocContextSet>(
|
||
|
new FocusedDocContextSet()
|
||
|
);
|