From d1df6cd50544149aba3056c3fbb674f1ffb344db Mon Sep 17 00:00:00 2001 From: Mads Tordal Date: Thu, 24 Oct 2024 10:36:21 +0200 Subject: [PATCH] handlenett-frontend: link to google the product if unsure, lets google it! --- handlenett-frontend/components/Item.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/handlenett-frontend/components/Item.vue b/handlenett-frontend/components/Item.vue index 3d62199..69f4974 100644 --- a/handlenett-frontend/components/Item.vue +++ b/handlenett-frontend/components/Item.vue @@ -4,6 +4,7 @@ +
📝{{ createdBy }}
@@ -30,6 +31,10 @@ onMounted(() => { status.value = props.element.isCompleted }) +const lmfgi = () => { + window.open(`https://www.google.com/search?q=bunnpris ${props.element.name}&udm=2`, '_blank') +} + const update = () => { status.value = !status.value; emit('changed', { id: props.element.id, name: props.element.name, isCompleted: status.value }) @@ -57,7 +62,7 @@ const createdBy = computed(() => { font-weight: bold; } -.gi-creator{ +.gi-creator { font-size: 0.8rem; font-weight: 100; padding-left: 1rem;