mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-02 19:28:14 +08:00
8 lines
263 B
TypeScript
8 lines
263 B
TypeScript
import { computed, getCurrentInstance } from 'vue'
|
|
import type { ComputedRef } from 'vue'
|
|
|
|
export const useProp = <T>(name: string): ComputedRef<T | undefined> => {
|
|
const vm = getCurrentInstance()!
|
|
return computed(() => vm.proxy?.$props[name] ?? undefined)
|
|
}
|