版博士V2.0程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

8 行
235 B

  1. import type { ComputedRef } from 'vue';
  2. interface Params {
  3. excludeListeners?: boolean;
  4. excludeKeys?: ComputedRef<string[]>;
  5. }
  6. export declare const useAttrs: (params?: Params) => ComputedRef<Record<string, unknown>>;
  7. export {};