Skip to content
This repository was archived by the owner on Nov 5, 2023. It is now read-only.

Commit eba6056

Browse files
committed
fix: lint issue
1 parent 8944926 commit eba6056

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Grid.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ import {
4949
} from "./utilites";
5050
import { PageProvider, pipeline } from "./pipeline";
5151
import { once } from "ramda";
52+
import { MaybeElementRef, VueInstance } from "@vueuse/core";
5253
5354
export default defineComponent({
5455
name: "Grid",
@@ -79,8 +80,8 @@ export default defineComponent({
7980
},
8081
setup(props) {
8182
// template refs
82-
const rootRef = ref<Element>();
83-
const probeRef = ref<Element>();
83+
const rootRef = ref<HTMLElement | SVGElement | VueInstance>();
84+
const probeRef = ref<HTMLElement | SVGElement | VueInstance>();
8485
8586
// data to render
8687
const {

0 commit comments

Comments
 (0)