Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 6 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Coverage | 100% |
Changes | 0 |
1 | 1 | import type { InjectionKey, Ref } from 'vue'; |
|
2 | 1 | import type { SetTitleFn } from './types'; |
|
3 | 1 | ||
4 | 1 | export const PAGE_TITLE: InjectionKey<Ref<string>> = Symbol('title'); |
|
5 | export const SET_PAGE_TITLE: InjectionKey<SetTitleFn> = Symbol('set-title'); |
||
6 |