Skip to content
This repository was archived by the owner on Jan 9, 2022. It is now read-only.

Commit a80bbac

Browse files
committed
feat: componentId composable
1 parent 2bd45ed commit a80bbac

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/composables/componentId.ts

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { getCurrentInstance } from 'vue'
2+
3+
export const useComponentId = () => {
4+
const instance = getCurrentInstance()
5+
6+
if(!instance) {
7+
throw new Error('useComponentId used out of setup function')
8+
}
9+
10+
return instance.uid
11+
}

0 commit comments

Comments
 (0)