chore: v-access类型标注

master
dap 1 year ago
parent c5fcf50c76
commit 1a6e5d22fd

@ -222,5 +222,7 @@
"vitest.disableWorkspaceWarning": true,
"cSpell.words": ["tinymce"],
"typescript.tsdk": "node_modules/typescript/lib",
"editor.linkedEditing": true // html
"editor.linkedEditing": true, // html,
"vscodeCustomCodeColor.highlightValue": "v-access", // v-access
"vscodeCustomCodeColor.highlightValueColor": "#CCFFFF"
}

@ -0,0 +1,12 @@
import type { Directive } from 'vue';
declare module 'vue' {
export interface ComponentCustomProperties {
/**
* : v-access:code=""
* v-access:role=""
* TODO: coderole
*/
vAccess: Directive<Element, string | string[]>;
}
}
Loading…
Cancel
Save