chore: using symbol as provide key (#8260)

This commit is contained in:
neverland
2021-03-04 10:58:36 +08:00
committed by GitHub
parent d20a2bd578
commit 831091182a
15 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
import { ComponentInstance } from '../utils';
import { watch, inject } from 'vue';
export const FORM_KEY = 'vanForm';
export const FIELD_KEY = 'vanField';
export const FORM_KEY = Symbol('Form');
export const FIELD_KEY = Symbol('Field');
export function useLinkField(getValue: () => unknown) {
const field = inject(FIELD_KEY, null) as ComponentInstance | null;