fix(ui): absolute import paths in pagination

This commit is contained in:
ArneBo 2025-02-19 18:59:20 +01:00
parent 066822328f
commit 0696298413
1 changed files with 2 additions and 2 deletions

View File

@ -5,8 +5,8 @@ import { ref, computed, watch } from 'vue'
import { isMobileView } from '~/composables/screen'
import { preventNonNumeric } from '~/utils/event-validators'
import Button from './Button.vue'
import Input from './Input.vue'
import Button from '~/components/ui/Button.vue'
import Input from '~/components/ui/Input.vue'
const { t } = useI18n()