fix lint @typescript-eslint/ban-types

This commit is contained in:
Johann150 2022-07-04 16:46:48 +02:00
parent d748ba2c51
commit a228d1ddaa
No known key found for this signature in database
GPG key ID: 9EE6577A2A06F8F1
5 changed files with 7 additions and 10 deletions

View file

@ -13,9 +13,6 @@ const props = defineProps<{
router?: Router;
}>();
const emit = defineEmits<{
}>();
const router = props.router ?? inject('router');
if (router == null) {

View file

@ -13,8 +13,6 @@
import { onMounted, ref, watch, PropType, onBeforeUnmount } from 'vue';
import tinycolor from 'tinycolor2';
const props = defineProps<{}>();
const loaded = !!window.TagCanvas;
const SAFE_FOR_HTML_ID = 'abcdefghijklmnopqrstuvwxyz';
const computedStyle = getComputedStyle(document.documentElement);