型・APIリファレンス
    Preparing search index...

    Variable rowSelectPlugin

    rowSelectPlugin: {
        install(
            app: {
                directive: (
                    name: string,
                    directive: {
                        mounted(
                            el: HTMLElement,
                            binding: {
                                value: { rowIdx: number; selectedRows: { rowIdx: number }[] };
                            },
                        ): void;
                        unmounted(el: HTMLElement): void;
                    },
                ) => void;
            },
        ): void;
    }

    Type Declaration

    • install: function
      • Parameters

        • app: {
              directive: (
                  name: string,
                  directive: {
                      mounted(
                          el: HTMLElement,
                          binding: {
                              value: { rowIdx: number; selectedRows: { rowIdx: number }[] };
                          },
                      ): void;
                      unmounted(el: HTMLElement): void;
                  },
              ) => void;
          }

        Returns void