feat: resize and drag component

This commit is contained in:
Qiuxia Fan
2021-12-22 15:44:52 +08:00
parent e312276041
commit 91982557a3
5 changed files with 9 additions and 166 deletions

View File

@@ -14,18 +14,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
declare module "vue-grid-layout" {
declare module "vue-drag-resize" {
import Vue from "vue";
export class GridLayout extends Vue {}
export class GridItem extends Vue {}
export interface GridItemData {
x: number;
y: number;
w: number;
h: number;
i: string;
}
export class VueDragResize extends Vue {}
}

View File