Don't wrap text in nav (#4035)

* Move v-list-item-text to v-text-overflow, use in tables

* Fix type issue
This commit is contained in:
Rijk van Zanten
2021-02-12 16:39:17 -05:00
committed by GitHub
parent c440c66461
commit 81fc8443df
23 changed files with 122 additions and 182 deletions

View File

@@ -8,7 +8,7 @@ declare global {
}
}
export default function useElementSize<T extends Element>(target: T | Ref<T> | Ref<null>) {
export default function useElementSize<T extends Element>(target: T | Ref<T> | Ref<undefined>) {
const width = ref(0);
const height = ref(0);