fix: target=blank and unused var

feat/issue-3/obi
Frédérik Benoist 2024-01-21 16:41:06 +01:00
parent d0841d9e6a
commit 4e8fafb2ad
2 changed files with 5 additions and 0 deletions

View File

@ -2,8 +2,10 @@
import { format } from 'date-fns'
import type { Order } from '@/models/Order'
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const props = defineProps<Props>()
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const { t } = useI18n()
interface Props {
@ -126,6 +128,7 @@ const panelStatus = ref(0)
v-if="preparationLine.trackingUrl"
:href="preparationLine.trackingUrl"
target="_blank"
rel="noopener noreferrer"
style="text-decoration: underline;"
>Link</a>
</span>

View File

@ -2,8 +2,10 @@
import { format } from 'date-fns'
import type { Order } from '@/models/Order'
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const props = defineProps<Props>()
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const { t } = useI18n()
interface Props {